.fxpep-checklist-wrapper {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-family: system-ui, sans-serif;
}

.fxpep-checklist-wrapper h1 {
    color: #0d47a1;
    text-align: center;
    margin: 0 0 15px;
    font-size: 1.9em;
}

.fxpep-session-start {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 12px;
}

.fxpep-progress-container {
    margin: 12px 0 20px;
    background: #e8e8e8;
    border-radius: 4px;
    height: 6px;
    overflow: hidden;
}

.fxpep-progress-bar {
    height: 100%;
    width: 0;
    background: #1976d2;
    transition: width 0.3s ease;
}

#fxpepProgressText {
    display: block;
    text-align: center;
    margin-top: 5px;
    font-size: 0.9em;
    font-weight: 600;
    color: #444;
}

.fxpep-approval {
    background: #e8f5e9;
    color: #1b5e20;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.25em;
    font-weight: bold;
    margin: 12px 0;
    border: 1px solid #81c784;
}

.fxpep-check-icon {
    margin-right: 6px;
}

.fxpep-hidden {
    display: none !important;
}

.fxpep-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fxpep-check-item {
    position: relative;
    padding: 8px 10px 8px 35px;
    margin: 6px 0;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 5px solid #1976d2;
    line-height: 1.35;
}

.fxpep-checklist label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95em;
}

.fxpep-checklist input[type="checkbox"] {
    margin: 3px 10px 0 0;
    width: 16px;
    height: 16px;
    accent-color: #1976d2;
}

.fxpep-checklist strong {
    color: #0d47a1;
    margin-right: 5px;
    font-weight: 700;
}

.fxpep-post-trade {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.fxpep-post-trade h2 {
    color: #0d47a1;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.fxpep-form-row {
    margin-bottom: 12px;
}

.fxpep-form-row label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
}

.fxpep-time-dropdowns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fxpep-time-dropdowns select {
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9em;
    min-width: 70px;
}

.fxpep-form-row input,
.fxpep-form-row select,
.fxpep-form-row textarea {
    width: 100%;
    padding: 7px 9px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9em;
}

.fxpep-duration-display {
    font-weight: bold;
    color: #1976d2;
}

.fxpep-form-row textarea {
    resize: vertical;
    min-height: 70px;
}

.fxpep-buttons {
    margin-top: 20px;
    text-align: center;
}

.fxpep-buttons button {
    background: #1976d2;
    color: white;
    border: none;
    padding: 9px 18px;
    margin: 5px;
    border-radius: 4px;
    font-size: 0.95em;
    cursor: pointer;
    transition: background 0.2s;
}

.fxpep-buttons button:hover {
    background: #0d47a1;
}

.fxpep-buttons #fxpepResetBtn {
    background: #757575;
}

.fxpep-buttons #fxpepResetBtn:hover {
    background: #616161;
}

/* Responsive */
@media (max-width: 640px) {
    .fxpep-checklist-wrapper {
        padding: 15px;
        margin: 10px;
    }
    .fxpep-check-item {
        padding-left: 30px;
    }
    .fxpep-time-dropdowns {
        flex-direction: column;
    }
    .fxpep-buttons button {
        width: 100%;
        margin: 6px 0;
    }
}