body {
    font-family: 'Inter', sans-serif;
    margin: 0;
}


.dark-bg {
    background-color: #1f2428;
    color: #eaeaea;
}


.topbar {
    background-color: #15191c;
    padding: 15px 0;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    margin-left: 20px;
}

.menu a {
    color: #ccc;
    margin-left: 20px;
    text-decoration: none;
}

    .menu a:hover {
        color: #fff;
    }


.content {
    padding: 40px 0;
}


.page-title {
    font-size: 32px;
    margin-bottom: 5px;
    margin-left: 20px;
}

.page-subtitle {
    color: #aaa;
    margin-bottom: 20px;
    margin-left: 20px;
}


.btn-main {
    display: inline-block;
    background: #f59e0b;
    color: #000;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 30px;
}


.car-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    margin-right: 20px;
    margin-left: 20px;
}


.car-card {
    background-color: #2a3035;
    border-radius: 10px;
    overflow: hidden;
}

    .car-card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }


.car-info {
    padding: 15px;
}

.reg {
    display: block;
    color: #aaa;
    margin: 5px 0 10px;
}

.actions a {
    color: #f59e0b;
    margin-right: 15px;
    text-decoration: none;
}


.footer {
    text-align: center;
    padding: 20px;
    color: #777;
}

.profile-title {
    font-size: 32px;
    margin-bottom: 5px;
}

.profile-reg {
    color: #aaa;
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spec-item span {
    display: block;
    color: #999;
    font-size: 14px;
}

.spec-item strong {
    font-size: 16px;
    font-weight: 600;
}


.info-columns {
    display: flex;
    gap: 20px;
    margin-left: 20px;

}

.owner-grid {
    display: flex;
    gap: 70px;
}

.topbar {
    background-color: orange;
}

.menu {
    margin-right: 35px;
    color: white;
}

.view-profile {
    display: inline-block;
    background-color: orange;
    color: white !important;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 500;
    margin-top: 10px;
}


    .view-profile:hover {
        background-color: #ffb733;
    }
