/* Contributions Dashboard Specific Styles */

/* Override grid layout for contributions dashboard - single column */
.dashboard .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.dashboard .welcome-section {
    margin-bottom: 40px;
}

.dashboard #current-time {
    margin-bottom: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Search bar styling */
.search-container {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    width: 250px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4a6fa0;
}

.search-input::placeholder {
    color: #999999;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .search-container {
        width: 100%;
    }

    .search-input {
        width: 100%;
    }
}
