.mhtp-unauthorized-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    text-align: center;
}

.mhtp-unauthorized-message {
    background-color: #f8f9fa;
    border-left: 4px solid #3a5998;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mhtp-unauthorized-message h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.mhtp-unauthorized-message p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.mhtp-unauthorized-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.mhtp-button {
    display: inline-block;
    background-color: #3a5998;
    color: #ffffff !important;
    padding: 12px 24px;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.mhtp-button:hover {
    background-color: #2d4373;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mhtp-unauthorized-container {
        padding: 15px;
        margin: 30px auto;
    }
    
    .mhtp-unauthorized-message {
        padding: 15px;
    }
    
    .mhtp-button {
        width: 100%;
        margin: 5px 0;
    }
}
