/* Custom styles to complement Bootstrap theme */
.script-preview {
    background: var(--bs-dark);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.required-label::after {
    content: "*";
    color: var(--bs-danger);
    margin-left: 4px;
}

.version-history {
    max-height: 300px;
    overflow-y: auto;
}

.subscription-plan {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.subscription-plan:hover {
    border-color: var(--bs-primary);
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background: var(--bs-dark);
    border-top: 1px solid var(--bs-border-color);
}

footer a {
    color: var(--bs-body-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--bs-primary);
}

.footer-text {
    color: var(--bs-secondary);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bs-dark);
    border-top: 1px solid var(--bs-border-color);
    padding: 1rem 0;
    z-index: 1050;
    display: none;
}

.cookie-consent p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}
