body {
    background: #fafafa;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", Arial, sans-serif;
}

/* Dashboard Layout */
.dash-container {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Dashboard Cards */
.dash-card {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: 0.2s ease;
}

.dash-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.1);
}

.dash-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

/* Trip Cards */
.trip-list {
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    display: grid;
    gap: 20px;
}

.trip-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.trip-img {
    width: 180px;
    height: 160px;
    object-fit: cover;
}

.trip-info {
    padding: 16px;
}

/* Profile box */
.profile-box {
    width: 90%;
    max-width: 500px;
    margin: 40px auto;
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.btn-save {
    background: #ff385c;
    border: none;
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
}




.profile-photo-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.profile-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #eee;
    margin-bottom: 10px;
}



/* for das header */
.dash-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.dash-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
