/**
 * Custom styles for Market Opportunities Dashboard
 */

/* General Layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Table Enhancements */
.table {
    font-size: 0.9rem;
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* High Score Highlight */
.table-success {
    background-color: #d1f2eb !important;
    font-weight: 500;
}

/* Badges */
.badge {
    padding: 0.35em 0.65em;
    font-weight: 600;
    font-size: 0.85em;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Login Page */
.min-vh-100 {
    min-height: 100vh;
}

.card-title {
    color: #333;
    font-weight: 600;
}

/* Responsive Table */
@media (max-width: 768px) {
    .table {
        font-size: 0.8rem;
    }

    .table thead th {
        font-size: 0.7rem;
    }

    .navbar-text {
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    margin-top: auto;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Price Direction Colors */
.text-success {
    color: #198754 !important;
    font-weight: 600;
}

.text-danger {
    color: #dc3545 !important;
    font-weight: 600;
}
