/* LipsumLab Plugin Core Stylesheet */
.ll-wrapper *, .ll-wrapper *::before, .ll-wrapper *::after {
    box-sizing: border-box;
}

.ll-wrapper {
    background-color: #f4f5f7;
    padding: 30px 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    min-height: 500px;
    width: 100%;
    display: block;
}

.ll-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Header bar styling - centered dark text on light grey background */
.ll-header {
    background-color: #eef0f3;
    padding: 20px;
    border-bottom: 1px solid #e2e5ec;
    text-align: center;
}

.ll-header h1 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.5px;
    display: block;
}

/* Content Layout Panels */
.ll-control-panel {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.ll-control-row {
    display: table;
    width: 100%;
    margin-bottom: 15px;
}

.ll-control-group {
    display: table-cell;
    width: 50%;
    padding-right: 10px;
    vertical-align: top;
}

.ll-control-group:last-child {
    padding-right: 0;
    padding-left: 10px;
}

.ll-control-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 6px;
}

.ll-control-group select,
.ll-control-group input[type="number"] {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #fafafa;
    color: #333333;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.ll-control-group select:focus,
.ll-control-group input[type="number"]:focus {
    border-color: #2ecc71;
    background-color: #ffffff;
}

/* Checkbox specific styling */
.ll-checkbox-row {
    margin-top: 10px;
    margin-bottom: 20px;
}

.ll-checkbox-label {
    display: inline-block;
    margin-right: 25px;
    cursor: pointer;
    font-size: 13px;
    color: #555555;
    user-select: none;
}

.ll-checkbox-label input {
    margin-right: 6px;
    vertical-align: middle;
}

.ll-checkbox-label span {
    vertical-align: middle;
}

/* Button UI styling - Custom requested Light Neon Green colors */
.ll-btn {
    display: inline-block;
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    transition: all 0.2s ease;
}

.ll-btn-primary {
    background-color: #39FF14;
    color: #111111;
    box-shadow: 0 2px 8px rgba(57, 255, 20, 0.3);
}

.ll-btn-primary:hover {
    background-color: #2ed910;
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.4);
}

.ll-btn-secondary {
    background-color: #39FF14;
    color: #111111;
}

.ll-btn-secondary:hover {
    background-color: #2ed910;
}

/* Output Area layout elements */
.ll-output-panel {
    padding: 25px;
    background-color: #fafbfc;
}

.ll-meta-counters {
    margin-bottom: 12px;
}

.ll-counter-tag {
    display: inline-block;
    background: #eef0f3;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #555555;
    margin-right: 10px;
}

.ll-counter-tag strong {
    color: #111111;
}

.ll-textarea-container {
    width: 100%;
    margin-bottom: 15px;
}

#ll-output-text {
    width: 100%;
    height: 250px;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #222222;
    background-color: #ffffff;
    resize: vertical;
    outline: none;
}

.ll-action-row {
    display: table;
    width: 100%;
}

.ll-action-row .ll-btn {
    display: table-cell;
    width: 50%;
}

.ll-action-row .ll-btn:first-child {
    margin-right: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.ll-action-row .ll-btn:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid #2ed910;
}

/* Responsive Overrides */
@media (max-width: 600px) {
    .ll-control-group {
        display: block;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 15px;
    }
    .ll-control-group:last-child {
        margin-bottom: 0;
    }
    .ll-checkbox-label {
        display: block;
        margin-bottom: 10px;
    }
    .ll-action-row .ll-btn {
        display: block;
        width: 100%;
        border-radius: 4px !important;
        margin-bottom: 10px;
        border-left: none !important;
    }
    .ll-action-row .ll-btn:last-child {
        margin-bottom: 0;
    }
}