/* Dashboard Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.profile-sidebar .card {
    position: relative;
    width: 100%;
    padding: 30px;
}

.matches-section {
    min-width: 0;
    padding-left: 60px;
    /* Force shift to the right */
    box-sizing: border-box;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    /* Visual separator line optionally */
}

/* Responsive Grid */
@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-sidebar .card {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .matches-section {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        padding-left: 0;
        border-left: none;
    }
}

/* Button Refinements */
.btn-edit-profile {
    display: block;
    width: 60%;
    /* Reduced width */
    margin: 20px auto 0;
    padding: 10px 15px;
    /* Reduced padding */
    font-size: 0.9rem;
    /* Slightly smaller text */
    text-align: center;
}