/**
 * Credit Manager - Public Styles
 */

.cm-simulator-widget,
.cm-my-credits {
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cm-simulator-widget {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.cm-widget-header {
    background: linear-gradient(135deg, #FDB913, #E8A307);
    padding: 25px;
    text-align: center;
}

.cm-widget-header h3 {
    margin: 0;
    color: #000;
}

.cm-widget-body {
    padding: 25px;
}

.cm-field {
    margin-bottom: 18px;
}

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

.cm-field input,
.cm-field select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
}

.cm-btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FDB913, #E8A307);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.cm-results {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.cm-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cm-result-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.cm-result-item .label {
    font-size: 12px;
    color: #666;
}

.cm-result-item .value {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}
