

body {
    font-family: Arial, sans-serif;
    background: #e5e7eb;
    color: #111827;
    margin: 0;
}

.page {
    max-width: 1250px;
    margin: auto;
    padding: 18px;
}


.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    padding: 18px 22px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid #d1d5db;
}

.top-left {
    display: flex;
    gap: 14px;
    align-items: center;
}

.logo-box {
    background: #374151;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.page-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.subtitle {
    font-size: 12px;
    color: #6b7280;
}


.back-link {
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

    .back-link:hover {
        background: #e5e7eb;
    }


.profile-box {
    background: #f9fafb;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #d1d5db;
    margin-bottom: 24px;
}

.profile-header {
    display: flex;
    gap: 18px;
    align-items: center;
}

.profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h2 {
    margin: 0 0 6px;
}


.cars-wrapper {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #d1d5db;
}


.cars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}


.profile-cars {
    grid-template-columns: repeat(4, 1fr);
}


.car-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #d1d5db;
}

.car-copy {
    padding: 14px;
    text-align: center;
}

.car-image {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .car-image img {
        max-width: 120px;
        max-height: 120px;
        object-fit: contain;
    }

.car-copy h4 {
    margin: 6px 0 2px;
    font-size: 14px;
}

.year {
    font-size: 12px;
    color: #6b7280;
}

.link {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
}

    .link:hover {
        text-decoration: underline;
    }
