.dycore-container {
    max-width: 1000px;
    margin-top: 20px;
}

.dycore-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.dycore-pro-badge {
    background: #eee;
    color: #666;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}



.dycore-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.dycore-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f1;
}

.dycore-row {
    display: flex;
    gap: 20px;
}

.dycore-col { flex: 1; }

.dycore-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d2327;
}

.dycore-step-label {
    display: block;
    font-size: 11px;
    color: #646970;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.dycore-input, .dycore-textarea, .dycore-select {
    width: 100%;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    padding: 8px;
}

.dycore-textarea { height: 100px; resize: vertical; }

.dycore-shortcode {
    background: #f0f6fb;
    border: 1px dashed #2271b1;
    color: #2271b1;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-family: monospace;
    font-weight: bold;
}

.dycore-remove {
    color: #d63638;
    cursor: pointer;
    margin-left: 15px;
    font-size: 13px;
}

.dycore-helper-box {
    margin: 15px 0;
    padding: 12px;
    background: #f6f7f7;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
}

.dycore-code-link {
    display: inline-block;
    background: #fff;
    padding: 2px 6px;
    border: 1px solid #ccd0d4;
    margin-top: 5px;
    word-break: break-all;
}

.dycore-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d2327;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    z-index: 9999;
    opacity: 0;
    transition: 0.3s;
}

.dycore-toast.show { opacity: 1; }

.dycore-hidden-h1 { display: none; }

.dycore-main-title {
    margin: 0;
    font-size: 2em;
    font-weight: 600;
    line-height: 1.2;
}

.dycore-card-global {
    border-left: 4px solid #46b450;
}

.dycore-global-title { margin-top: 0; }
.dycore-global-desc { margin-top: 5px; }

.dycore-actions-row {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.dycore-btn-icon { vertical-align: middle; }

.dycore-input.dycore-input-name {
    margin-bottom: 0;
    width: 250px;
    font-weight: bold;
}

.dycore-card-actions {
    display: flex;
    align-items: center;
}

.dycore-condition-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.dycore-flex-1 { flex: 1; }

.dycore-pro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dycore-label-inline { margin: 0; }
.dycore-upgrade-link { text-decoration: none; }
.dycore-upgrade-text { color: #d63638; font-weight: bold; }

@media screen and (max-width: 782px) {
    .dycore-row {
        flex-direction: column;
        gap: 15px;
    }

    .dycore-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dycore-input.dycore-input-name {
        width: 100%;
        margin-top: 5px;
    }

    .dycore-condition-wrapper {
        flex-direction: column;
    }

    .dycore-pro-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .dycore-actions-row {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .dycore-actions-row .button {
        width: 100%;
        text-align: center;
    }
}