/**
 * Admin styles for Content Reminder
 *
 * @package OKCRMC_Content_Reminder
 */

/* Container layout */
.okcrmc-container {
    display: flex;
    margin-top: 20px;
}

.okcrmc-settings-form {
    flex: 2;
    margin-right: 20px;
}

.okcrmc-stats {
    flex: 1;
    min-width: 250px;
}

/* Stats box styling */
.okcrmc-stats-box {
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 3px;
    text-align: center;
}

.okcrmc-count-circle {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #0073aa;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}

/* Manual email section styling */
.okcrmc-manual-email {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 3px;
    margin-top: 20px;
}

/* Responsive layout */
@media screen and (max-width: 782px) {
    .okcrmc-container {
        flex-direction: column;
    }
    
    .okcrmc-settings-form {
        margin-right: 0;
        margin-bottom: 20px;
    }
}