.wpeicr-app {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #1a1a1a;
}

.wpeicr-header {
    margin-bottom: 24px;
}

.wpeicr-header h2 {
    margin: 0 0 10px;
    font-size: 48px;
    line-height: 1.1;
    color: #111111;
}

.wpeicr-header p {
    margin: 0;
    font-size: 16px;
    color: #333333;
}

.wpeicr-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.wpeicr-panel,
.wpeicr-job-section,
.wpeicr-notes-section {
    background: #f5f5f5;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
}

.wpeicr-panel h3,
.wpeicr-job-section h3,
.wpeicr-notes-section h3 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.3;
    color: #111111;
}

.wpeicr-builder-section {
    margin-bottom: 16px;
    padding: 14px;
    background: #ececec;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
}

.wpeicr-builder-label {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
}

.wpeicr-builder-subtitle {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #333333;
}

.wpeicr-app textarea,
.wpeicr-app input[type="text"] {
    width: 100%;
    padding: 14px;
    margin: 0 0 16px;
    border: 1px solid #c8c8c8;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5;
    background: #ffffff;
    color: #111111;
}

.wpeicr-app textarea::placeholder,
.wpeicr-app input[type="text"]::placeholder {
    color: #8a8f98;
}

.wpeicr-app textarea {
    min-height: 150px;
    resize: vertical;
}

.wpeicr-app button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1f6feb;
    color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    min-height: 48px;
}

.wpeicr-app button:hover {
    background: #1557b0;
}

.wpeicr-output,
.wpeicr-job-results,
.wpeicr-selected-job {
    margin-top: 16px;
    padding: 14px;
    background: #ececec;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    min-height: 56px;
    color: #111111;
    font-size: 16px;
    line-height: 1.5;
}

.wpeicr-job-result-item {
    padding: 12px;
    margin-bottom: 10px;
    background: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    cursor: pointer;
    color: #111111;
}

.wpeicr-job-result-item:hover {
    background: #eef4ff;
    border-color: #1f6feb;
}

.wpeicr-job-result-item:last-child {
    margin-bottom: 0;
}

.wpeicr-button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.wpeicr-button-row button {
    width: 100%;
}

.wpeicr-quick-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.wpeicr-builder-btn {
    background: #e9ecef !important;
    color: #111111 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    min-height: auto !important;
}

.wpeicr-builder-btn:hover {
    background: #d0d7de !important;
}

.wpeicr-builder-btn.is-active {
    background: #1f6feb !important;
    color: #ffffff !important;
}

@media (min-width: 700px) {
    .wpeicr-button-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .wpeicr-panels {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 699px) {
    .wpeicr-header h2 {
        font-size: 34px;
    }

    .wpeicr-app {
        padding: 14px;
    }

    .wpeicr-panel,
    .wpeicr-job-section,
    .wpeicr-notes-section {
        padding: 16px;
    }

    .wpeicr-app button {
        width: 100%;
    }
}