/* PHP Constants Manager Admin Styles */

/* Modern Form Styles */
.phpcm-modern-form {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 24px;
    margin-top: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.phpcm-form-container {
    max-width: 800px;
}

.phpcm-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.phpcm-form-group {
    display: flex;
    flex-direction: column;
}

.phpcm-form-group-full {
    grid-column: 1 / -1;
}

.phpcm-form-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e1e1e;
    font-size: 14px;
}

.phpcm-label-text {
    margin-right: 4px;
}

.phpcm-required {
    color: #d63638;
    font-weight: bold;
}

.phpcm-input-wrapper,
.phpcm-select-wrapper,
.phpcm-textarea-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.phpcm-input,
.phpcm-select,
.phpcm-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.2s ease;
    background: #fff;
}

.phpcm-input:focus,
.phpcm-select:focus,
.phpcm-textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.phpcm-input[readonly],
.phpcm-input[disabled],
.phpcm-input.phpcm-input-disabled {
    background: #f7f7f7;
    color: #666;
    cursor: not-allowed;
}

.phpcm-input-icon {
    position: absolute;
    right: 12px;
    color: #666;
    font-size: 16px;
    pointer-events: none;
}

.phpcm-input-error,
.phpcm-select-error,
.phpcm-textarea-error {
    border-color: #d63638 !important;
    box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.1) !important;
}

.phpcm-input-error:focus,
.phpcm-select-error:focus,
.phpcm-textarea-error:focus {
    border-color: #d63638 !important;
    box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.2) !important;
}

.phpcm-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 44px;
}

.phpcm-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.phpcm-checkbox-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phpcm-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.phpcm-checkbox-label .phpcm-checkbox {
    display: none !important;
}

.phpcm-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
    background: #fff;
}

.phpcm-checkbox:checked + .phpcm-checkbox-custom {
    background: #0073aa;
    border-color: #0073aa;
}

.phpcm-checkbox:checked + .phpcm-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.phpcm-checkbox-text {
    color: #1e1e1e;
}

.phpcm-help-text {
    margin: 6px 0 0 0;
    font-size: 13px;
    color: #646970;
    line-height: 1.4;
}

.phpcm-help-warning {
    color: #996800;
    font-weight: 500;
}

.phpcm-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e1e1e1;
}

.phpcm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.phpcm-btn-primary {
    background: #0073aa;
    color: #fff;
}

.phpcm-btn-primary:hover,
.phpcm-btn-primary:focus {
    background: #005a87;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3);
}

.phpcm-btn-secondary {
    background: #f6f7f7;
    color: #646970;
    border: 1px solid #ddd;
}

.phpcm-btn-secondary:hover,
.phpcm-btn-secondary:focus {
    background: #f0f0f1;
    color: #1e1e1e;
    border-color: #999;
    text-decoration: none;
}

.phpcm-btn-icon {
    font-size: 14px;
}

/* Responsive design for modern form */
@media screen and (max-width: 782px) {
    .phpcm-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .phpcm-form-group-full {
        grid-column: 1;
    }
    
    .phpcm-modern-form {
        padding: 16px;
        margin: 12px 0;
    }
    
    .phpcm-form-actions {
        flex-direction: column;
        margin-top: 24px;
    }
    
    .phpcm-btn {
        justify-content: center;
        padding: 14px 20px;
    }
}

/* Legacy Form styles */
.phpcm-form .form-table th {
    width: 200px;
}

/* Status indicators */
.phpcm-status-active {
    color: #00a32a;
    font-weight: 600;
}

.phpcm-status-inactive {
    color: #d63638;
    font-weight: 600;
}

.phpcm-status-predefined {
    color: #996800;
    font-weight: 600;
    cursor: help;
}

/* Enhanced predefined badge styling */
.phpcm-predefined-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #ffe6e6;
    border: 1px solid #ffb3b3;
    border-radius: 16px;
    color: #cc0000;
    font-size: 12px;
    font-weight: 600;
    gap: 4px;
    cursor: help;
    position: relative;
}

/* Tooltip styles */
.phpcm-tooltip {
    position: relative;
}

.phpcm-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: normal;
    white-space: normal;
    width: 280px;
    line-height: 1.5;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    margin-bottom: 5px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.phpcm-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

.phpcm-tooltip:hover::after,
.phpcm-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}


.phpcm-predefined-badge-text {
    white-space: nowrap;
}

/* Visual row distinction for predefined constants */
.wp-list-table tr.predefined-constant {
    background: linear-gradient(90deg, #ffe6e6 0%, #ffffff 10%);
    border-left: 3px solid #dc3545;
}

.wp-list-table tr.predefined-constant td {
    position: relative;
}

/* Toggle switch styles */
.phpcm-toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.phpcm-toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.phpcm-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.phpcm-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.phpcm-toggle-switch input:checked + .phpcm-toggle-slider {
    background-color: #00a32a;
}

.phpcm-toggle-switch input:checked + .phpcm-toggle-slider:before {
    transform: translateX(20px);
}

.phpcm-toggle-switch input:disabled + .phpcm-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.phpcm-toggle-loading .phpcm-toggle-slider {
    opacity: 0.6;
}

.phpcm-toggle-success .phpcm-toggle-slider {
    box-shadow: 0 0 8px rgba(0, 163, 42, 0.5);
}

/* List table styles */
.wp-list-table code {
    background: #f0f0f1;
    padding: 3px 5px;
    border-radius: 3px;
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
}

.wp-list-table .column-cb {
    width: 2.2em;
}

.wp-list-table .column-name {
    width: 20%;
}

.wp-list-table .column-value {
    width: 35%;
}

.wp-list-table .column-is_active {
    width: 10%;
}

.wp-list-table .column-predefined {
    width: 10%;
}

.wp-list-table .column-description {
    width: 20%;
}

.wp-list-table .column-created_at {
    width: 10%;
}

/* Status count */
.phpcm-status-count {
    color: #646970;
    font-weight: normal;
}

/* Notices */
.notice.phpcm-notice {
    margin: 5px 0 15px;
}

/* Row actions visibility */
.wp-list-table .row-actions {
    font-size: 13px;
}

/* Category styles for All Defines */
.phpcm-category-core,
.phpcm-category-php-core {
    color: #0073aa;
    font-weight: 600;
}

.phpcm-category-user-defined {
    color: #00a32a;
    font-weight: 600;
}

.phpcm-category-wordpress-core,
.phpcm-category-wordpress-config {
    color: #135e96;
    font-weight: 600;
}

.phpcm-category-php {
    color: #8892bf;
    font-weight: 600;
}

.phpcm-category-date-time,
.phpcm-category-math,
.phpcm-category-string,
.phpcm-category-file {
    color: #d63638;
    font-weight: 600;
}

.phpcm-category-network,
.phpcm-category-database,
.phpcm-category-curl {
    color: #996800;
    font-weight: 600;
}

.phpcm-category-image,
.phpcm-category-json,
.phpcm-category-xml,
.phpcm-category-filter,
.phpcm-category-pcre,
.phpcm-category-hash,
.phpcm-category-openssl,
.phpcm-category-soap {
    color: #7b2cbf;
    font-weight: 600;
}

.phpcm-category-error {
    color: #cc1818;
    font-weight: 600;
}

.phpcm-category-directory {
    color: #2d4a23;
    font-weight: 600;
}

.phpcm-category-other {
    color: #646970;
    font-weight: 600;
}

/* All Defines table column widths */
.wp-list-table .column-category {
    width: 15%;
}

/* My Constants table responsive column adjustments */
/* When columns are hidden, make remaining columns more flexible */
.wp-list-table .column-name {
    min-width: 180px;
}

.wp-list-table .column-value {
    min-width: 200px;
}

.wp-list-table .column-description {
    min-width: 150px;
}

/* If description is hidden, let other columns expand */
.wp-list-table:not(:has(.column-description.manage-column)) .column-value {
    width: 40%;
}

.wp-list-table:not(:has(.column-description.manage-column)) .column-name {
    width: 25%;
}

/* Alternative approach using CSS that works in more browsers */
@media screen and (min-width: 783px) {
    /* When we have fewer visible columns, make table layout more flexible */
    .wp-list-table.constants-table {
        table-layout: auto;
    }
    
    .wp-list-table.constants-table .column-name {
        width: auto;
        min-width: 180px;
    }
    
    .wp-list-table.constants-table .column-value {
        width: auto;
        min-width: 200px;
    }
    
    .wp-list-table.constants-table .column-is_active {
        width: 100px;
        min-width: 100px;
    }
    
    .wp-list-table.constants-table .column-predefined {
        width: 100px;
        min-width: 100px;
    }
    
    .wp-list-table.constants-table .column-created_at {
        width: 120px;
        min-width: 120px;
    }
}

/* Category filter links styling */
.subsubsub {
    list-style: none;
    margin: 8px 0 5px;
    padding: 0;
    font-size: 13px;
    color: #646970;
    clear: both;
    overflow: hidden;
}

.subsubsub li {
    display: inline-block;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    float: none;
}

.subsubsub li::after {
    content: ' |';
    color: #c3c4c7;
    margin: 0 2px;
}

.subsubsub li:last-child::after {
    content: '';
}

.subsubsub a {
    color: #0073aa;
    text-decoration: none;
    padding: 2px 6px;
    display: inline-block;
}

.subsubsub a:hover {
    color: #135e96;
}

.subsubsub .current {
    color: #000;
    font-weight: 600;
}

.subsubsub .count {
    color: #646970;
    font-weight: normal;
}

/* Clear floats after subsubsub */
.clear {
    clear: both;
    height: 0;
    overflow: hidden;
}

/* Import/Export Styles */
.phpcm-import-export-container {
    margin-top: 20px;
}

.phpcm-import-export-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.phpcm-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.phpcm-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e1e1e1;
    background: #f9f9f9;
}

.phpcm-card-header h2 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #1e1e1e;
}

.phpcm-card-header .description {
    margin: 0;
    color: #646970;
    font-size: 14px;
}

.phpcm-card-body {
    padding: 24px;
}

.phpcm-export-info {
    margin-bottom: 20px;
}

.phpcm-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.phpcm-info-icon {
    font-size: 18px;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.phpcm-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phpcm-info-content strong {
    font-weight: 600;
    color: #1e1e1e;
    font-size: 14px;
}

.phpcm-info-content span {
    color: #646970;
    font-size: 13px;
}

.phpcm-file-upload-area {
    position: relative;
    margin-bottom: 20px;
}

.phpcm-file-input {
    display: none;
}

.phpcm-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
}

.phpcm-file-label:hover,
.phpcm-file-label.drag-over {
    border-color: #0073aa;
    background: #f0f8ff;
}

.phpcm-file-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.phpcm-file-text {
    text-align: center;
}

.phpcm-file-text strong {
    display: block;
    font-size: 16px;
    color: #1e1e1e;
    margin-bottom: 4px;
}

.phpcm-file-text span {
    color: #646970;
    font-size: 14px;
}

.phpcm-file-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #e8f5e8;
    border: 1px solid #00a32a;
    border-radius: 6px;
    margin-top: 12px;
}

.phpcm-file-name {
    color: #1e1e1e;
    font-weight: 500;
}

.phpcm-file-remove {
    background: none;
    border: none;
    color: #d63638;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phpcm-file-remove:hover {
    background: #d63638;
    color: white;
}

.phpcm-import-requirements {
    margin-bottom: 20px;
    padding: 16px;
    background: #f0f8ff;
    border: 1px solid #b3d9ff;
    border-radius: 6px;
}

.phpcm-import-requirements h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #1e1e1e;
}

.phpcm-import-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.phpcm-import-requirements li {
    margin-bottom: 6px;
    font-size: 13px;
    color: #646970;
    line-height: 1.4;
}

/* Responsive design for import/export */
@media screen and (max-width: 782px) {
    .phpcm-import-export-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .phpcm-card-header,
    .phpcm-card-body {
        padding: 16px;
    }
    
    .phpcm-file-label {
        padding: 30px 16px;
    }
    
    .phpcm-file-icon {
        font-size: 36px;
    }
}

/* Responsive styles */
@media screen and (max-width: 782px) {
    .phpcm-form .form-table th {
        width: auto;
        padding-bottom: 0;
    }
    
    .wp-list-table .column-value,
    .wp-list-table .column-predefined,
    .wp-list-table .column-description,
    .wp-list-table .column-created_at {
        display: none;
    }
    
    .phpcm-toggle-switch {
        width: 36px;
        height: 20px;
    }
    
    .phpcm-toggle-slider:before {
        height: 14px;
        width: 14px;
        left: 3px;
        bottom: 3px;
    }
    
    .phpcm-toggle-switch input:checked + .phpcm-toggle-slider:before {
        transform: translateX(16px);
    }
}

/* Import error styling */
.notice.notice-error ul {
    margin: 10px 0;
    padding-left: 20px;
}

.notice.notice-error li {
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: monospace;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 3px;
    border-left: 3px solid #d63638;
}

/* Import options styling */
.phpcm-import-options {
    margin: 20px 0;
    padding: 16px;
    background: #f8f9fa;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
}

.phpcm-import-options .phpcm-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    cursor: pointer;
}

.phpcm-import-options .phpcm-checkbox-text {
    flex: 1;
}

.phpcm-import-options .phpcm-checkbox-text strong {
    display: block;
    color: #1d2327;
    margin-bottom: 4px;
}

.phpcm-import-options .description {
    color: #646970;
    font-size: 13px;
    line-height: 1.4;
}

/* Search field enhancements */
.search-box {
    margin-bottom: 16px;
}

.search-box .search-submit {
    margin-left: 4px !important;
}

.search-box input[type="search"] {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.search-box input[type="search"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

/* Search form spacing */
form.search-form {
    margin-bottom: 8px;
}

/* Help Page Styles */

/* Table of Contents Styles */
.phpcm-toc-container {
    background: #f8f9fa;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0 40px 0;
}

.phpcm-toc-container h2 {
    margin-top: 0 !important;
    margin-bottom: 20px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 8px;
    color: #0073aa;
}

.phpcm-toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.phpcm-toc-column h3 {
    font-size: 16px;
    color: #1d2327;
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.phpcm-toc-column ul {
    margin: 0 0 25px 0;
    padding-left: 0;
    list-style: none;
}

.phpcm-toc-column li {
    margin-bottom: 6px;
}

.phpcm-toc-column a {
    color: #0073aa;
    text-decoration: none;
    padding: 4px 8px;
    display: block;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.phpcm-toc-column a:hover {
    background: #e1f4ff;
    color: #005a87;
    text-decoration: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Content sections */
.phpcm-help-content h2 {
    border-bottom: 1px solid #ccd0d4;
    padding-bottom: 10px;
    margin-top: 40px;
    scroll-margin-top: 20px;
}

.phpcm-help-content h2:first-of-type {
    margin-top: 20px;
}

.phpcm-help-content h3 {
    color: #1d2327;
    margin-top: 20px;
    scroll-margin-top: 20px;
}

.phpcm-help-content code {
    background: #f0f0f1;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
}

.phpcm-help-content pre {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    padding: 15px;
    overflow-x: auto;
    margin: 15px 0;
}

.phpcm-help-content pre code {
    background: none;
    padding: 0;
    font-size: 13px;
    line-height: 1.5;
}

.phpcm-help-content ul, .phpcm-help-content ol {
    margin-left: 20px;
}

.phpcm-help-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.phpcm-help-content .wp-list-table {
    margin: 20px 0;
}

.phpcm-help-content .wp-list-table td {
    padding: 12px;
    vertical-align: top;
}

.phpcm-help-content .wp-list-table code {
    font-weight: 600;
    color: #1d2327;
}

/* Import warning box */
.phpcm-import-warning {
    background: #fff8e1;
    border: 1px solid #f0c674;
    border-radius: 6px;
    padding: 16px;
    margin: 20px 0;
}

.phpcm-import-warning p {
    margin: 0;
    color: #8b6914;
}

.phpcm-import-warning a {
    color: #8b6914;
    text-decoration: underline;
}

/* Responsive design for help page */
@media screen and (max-width: 782px) {
    .phpcm-toc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .phpcm-toc-container {
        padding: 16px;
    }
    
    .phpcm-help-content h2 {
        margin-top: 30px;
    }
}

/* Settings Page Styles */
.phpcm-settings-content {
    max-width: 1000px;
}

.phpcm-status-info {
    margin: 10px 0;
    padding: 8px 12px;
    background: #f0f0f1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phpcm-status-info .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.phpcm-status-info code {
    background: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
}

.phpcm-info-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dcdcde;
}

.phpcm-info-section h2 {
    color: #1d2327;
    border-bottom: 1px solid #ccd0d4;
    padding-bottom: 10px;
}

.phpcm-info-section h3 {
    color: #1d2327;
    margin-top: 25px;
}

.phpcm-info-section h4 {
    color: #1d2327;
    margin-top: 20px;
    margin-bottom: 10px;
}

.phpcm-info-section code {
    background: #f0f0f1;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
}

.phpcm-info-section ul, .phpcm-info-section ol {
    margin-left: 20px;
}

.phpcm-info-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.phpcm-info-box {
    background: #f8f9fa;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.phpcm-info-box h4 {
    margin-top: 0;
    color: #0073aa;
}

.phpcm-info-box ul {
    margin-bottom: 15px;
}

.phpcm-info-box p:last-child {
    margin-bottom: 0;
}