.device-notice {
    background-color: #ffc107;
    border-bottom: 1px solid #333;
    padding: 1rem;
    margin-bottom: 2px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.device-notice .notice-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.device-notice .notice-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.8rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.device-notice .notice-actions a {
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.device-notice .btn-continue {
    color: #8b4513;
}

.device-notice .btn-redirect {
    color: #1a73e8;
}

@media (max-width: 600px) {
    .device-notice {
        padding: 0.8rem;
    }

    .device-notice .notice-text {
        font-size: 0.9rem;
    }

    .device-notice .notice-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .device-notice .notice-actions a {
        width: 100%;
    }
}