.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-book-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-family: tenon, Adjusted Arial Fallback, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.header-book-button:hover {
    background-color: #333;
}

.button-icon {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.button-icon svg {
    width: 16px;
    height: 16px;
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) {
    .header-right {
        flex-direction: column;
        gap: 15px;
        align-items: flex-end;
    }
    
    .header-book-button {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .button-icon svg {
        width: 15px;
        height: 15px;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .header-book-button {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .button-icon svg {
        width: 14px;
        height: 14px;
    }
}