.warning-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.warning-modal-content {
    background-color: #fefefe;
    margin: 8% auto;
    padding: 20px;
    border: 1px solid #dc3545;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.warning-modal-header {
    border-bottom: 2px solid #dc3545;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.warning-modal-title {
    color: #dc3545;
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
}

.warning-modal-body {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.warning-modal-footer {
    text-align: right;
}

.warning-modal-btn {
    padding: 8px 16px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.warning-modal-btn:hover {
    background-color: #c82333;
}

.warning-icon {
    color: #dc3545;
    font-size: 2em;
    margin-right: 10px;
    vertical-align: middle;
}

.highlight {
    color: #dc3545;
    font-weight: bold;
}

.domain-highlight {
    color: #0056b3;
    font-weight: bold;
    text-decoration: underline;
}