/* Message Page Styles */
.oeg-message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 40px 20px;
    text-align: center;
}

.oeg-message-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: white;
}

.oeg-message-container h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.oeg-message-container p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    max-width: 400px;
    margin: 0;
}

/* Success styling */
.oeg-message-container.success .oeg-message-icon {
    background-color: #28a745;
}

.oeg-message-container.success h4 {
    color: #28a745;
}

/* Error styling */
.oeg-message-container.error .oeg-message-icon {
    background-color: #dc3545;
}

.oeg-message-container.error h4 {
    color: #dc3545;
}


.oeg-message-container {
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .oeg-message-container {
        padding: 30px 15px;
        min-height: 150px;
    }
    
    .oeg-message-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .oeg-message-container h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .oeg-message-container p {
        font-size: 13px;
    }
}