.eu-revocation-container {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
}

.eu-revocation-button-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eu-revocation-btn,
.eu-revocation-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
}

.eu-revocation-btn:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #000;
    text-decoration: none;
}

.eu-revocation-text {
    cursor: default;
    background-color: #f8f9fa;
}

.eu-revocation-btn i,
.eu-revocation-text i {
    font-size: 18px;
    color: #e74c3c;
}

.eu-revocation-info {
    position: relative;
}

.info-icon {
    font-size: 20px;
    color: #007bff;
    cursor: help;
}

.revocation-content {
    padding: 10px 0;
}

.revocation-content h6 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.revocation-content p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
    font-size: 14px;
}

.eu-revocation-confirmation-notice {
    margin: 20px 0;
}

.eu-revocation-confirmation-notice .alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
}

.eu-revocation-confirmation-notice .material-icons {
    font-size: 24px;
    color: #0c5460;
}

.notice-content {
    flex: 1;
}

.notice-content strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .eu-revocation-button-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .eu-revocation-btn,
    .eu-revocation-text {
        width: 100%;
        justify-content: center;
    }
}