/* === PICK CARD STYLES === */
.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pick-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    border: 1px solid #333;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.pick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.pick-game {
    font-weight: bold;
    color: #e0e0e0;
    font-size: 16px;
}

.pick-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-win {
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
}

.status-loss {
    background: linear-gradient(45deg, #f44336, #ef5350);
    color: white;
}

.status-push {
    background: linear-gradient(45deg, #ffc107, #ffca28);
    color: #333;
}

.status-pending {
    background: linear-gradient(45deg, #607d8b, #78909c);
    color: white;
}

.meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.meta-item {
    text-align: center;
}

.meta-label {
    font-size: 11px;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.meta-value {
    font-weight: bold;
    color: #e0e0e0;
    font-size: 14px;
}

.confidence-high {
    color: #4caf50 !important;
}

.confidence-medium {
    color: #ffc107 !important;
}

.confidence-low {
    color: #ff9800 !important;
}

.bet-line {
    background: rgba(255, 107, 53, 0.1);
    border-left: 3px solid #ff6b35;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.bet-text {
    font-weight: bold;
    color: #ff6b35;
    font-size: 16px;
    margin-bottom: 5px;
}

.bet-odds {
    color: #e0e0e0;
    font-size: 14px;
}

.pick-venue {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.venue-label {
    font-weight: bold;
    color: #ff6b35;
}

.pick-reasoning {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-top: 15px;
}

.no-picks-message {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
    grid-column: 1 / -1;
}

.no-picks-message h3 {
    color: #e0e0e0;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

/* === DATE FILTER STYLES === */
.date-filter {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 10px;
    border: 1px solid #333;
}

.filter-label {
    color: #e0e0e0;
    font-weight: bold;
}

.date-input {
    background: #1a1a1a;
    border: 1px solid #555;
    border-radius: 5px;
    padding: 8px 12px;
    color: #e0e0e0;
    font-size: 14px;
}

.date-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.filter-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

/* === LOADING STYLES === */
.loading {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #333;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === ADMIN AND NO-DATA STYLES === */
.no-picks-today {
    text-align: center;
    padding: 40px 20px;
}

.no-pick-message h3 {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 24px;
}

.no-pick-message p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.admin-actions {
    margin-top: 20px;
}

.add-pick-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.add-pick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.no-activity-message,
.no-data-message {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
}

.no-activity-message h3,
.no-data-message p {
    margin-bottom: 15px;
}

.button {
    background: #0073aa;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    margin: 0 5px;
    display: inline-block;
}

.button-primary {
    background: #ff6b35 !important;
}

.button:hover {
    background: #005177;
    color: white;
    text-decoration: none;
}

.button-primary:hover {
    background: #e55a2b !important;
}