/* Good QR Stocks Table Styles */
.good-qr-stocks-container {
	font-size: 100%; /* Reset base size */
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.good-qr-title {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 3.5rem;
}

.good-qr-description {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

#good-qr-stocks-table {
    font-size: 1.60rem;
}

#good-qr-stocks-table th {
	font-size: 1.7rem;
    white-space: nowrap;
}

.text-success {
    color: #27ae60;
    font-weight: 500;
}

.text-danger {
    color: #e74c3c;
    font-weight: 500;
}

.good-qr-loading-spinner {
    text-align: center;
    padding: 20px;
}

.stock-link {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s;
}

.stock-link:hover {
    color: #3498db;
    text-decoration: underline;
}

.stock-link .text-muted {
    color: #7f8c8d;
}

.stock-link:hover .text-muted {
    color: #3498db;
}

#good-qr-stocks-table td:nth-child(2) {
    font-weight: 500;
    color: #2c3e50;
}

@media (max-width: 576px) {
    .stock-link {
        font-size: 0.9rem;
    }
    
    .stock-link .text-muted {
        font-size: 0.8rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .good-qr-stocks-container {
        padding: 10px;
    }
    
    #good-qr-stocks-table {
        font-size: 0.8rem;
    }
    
    .good-qr-title {
        font-size: 1.4rem;
    }
}