/* AlphaSMS Admin Styles */
.orderalertcw-wrap {
    max-width: 1200px;
    margin: 20px 0;
}

.orderalertcw-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.orderalertcw-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.orderalertcw-card-header h2 {
    margin: 0;
    font-size: 1.5em;
}

.orderalertcw-balance {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 4px;
    color: #2d4d7d;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.orderalertcw-balance .dashicons {
    margin-right: 8px;
    color: #2d4d7d;
}

.orderalertcw-customer-count {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 4px;
    color: #2d4d7d;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.orderalertcw-customer-count .dashicons {
    margin-right: 8px;
    color: #2d4d7d;
}

.orderalertcw-field {
    margin-bottom: 20px;
}

.orderalertcw-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.orderalertcw-field input[type="text"],
.orderalertcw-field textarea {
    width: 100%;
    max-width: 600px;
}

.orderalertcw-field .description {
    margin-top: 5px;
    color: #666;
    font-style: italic;
}

.orderalertcw-button {
    background: #2d4d7d !important;
    border-color: #2d4d7d !important;
    color: #fff !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.orderalertcw-button:hover {
    background: #1e3458 !important;
    border-color: #1e3458 !important;
    color: #fff !important;
}

.orderalertcw-notice {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.orderalertcw-recipients {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
}

.orderalertcw-recipients-list {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 15px;
}

.orderalertcw-balance-widget {
    text-align: center;
    padding: 15px 0;
}

.orderalertcw-balance-amount {
    font-size: 2em;
    font-weight: bold;
    color: #2d4d7d;
}

.orderalertcw-balance-label {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

.orderalertcw-dashboard-actions {
    margin-top: 15px;
    text-align: center;
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    .orderalertcw-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .orderalertcw-balance, .orderalertcw-customer-count {
        margin-top: 10px;
        width: 100%;
    }
}