﻿.auto-style1 {
    text-decoration: underline;
}

.header {
    background-color: #1e1e1e;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

    .nav-menu a {
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
    }

.action-buttons {
    display: flex;
    gap: 10px;
}

    .action-buttons a {
        color: #ffffff;
        background-color: #007bff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
    }

        .action-buttons a.secondary {
            background-color: #6c757d;
        }
