/* baseurl.css */
.access-restriction-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.access-restriction-content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.access-restriction-content h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    color: #dc3545;
    font-size: 24px;
    font-weight: bold;
}

.access-restriction-content p {
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.access-restriction-content ol {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 0;
}

.access-restriction-content li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.highlight-green {
    color: #28a745;
    font-weight: bold;
}