wp_enqueue_style('brat-generator-style', plugins_url('style.css', __FILE__));
wp_enqueue_script('brat-generator-script', plugins_url('script.js', __FILE__), array('jquery'), '1.0', true);* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.container1 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.generator-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header p {
    opacity: 0.9;
    font-size: 1.1em;
}

.input-section, .output-section {
    padding: 30px;
    background: #f8fafc;
}

label {
    display: block;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1.1em;
}

textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    resize: vertical;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.style-select select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.style-select select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.checkboxes {
    display: grid;
    gap: 15px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-wrapper:hover {
    background-color: #f1f5f9;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #6366f1;
    border-radius: 6px;
    cursor: pointer;
}

.checkbox-wrapper label {
    margin: 0;
    font-size: 0.95em;
    cursor: pointer;
}

button {
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

button span {
    font-size: 1.2em;
}

.primary-btn {
    background: #6366f1;
    color: white;
    width: 100%;
    margin-bottom: 20px;
}

.primary-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.secondary-btn {
    background: #475569;
    color: white;
}

.secondary-btn:hover {
    background: #334155;
}

.secondary-btn:last-child {
    background: #eab308;
}

.secondary-btn:last-child:hover {
    background: #ca8a04;
}

.message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    display: none;
    animation: fadeIn 0.3s ease;
}

.message.success {
    background: #f0fdf4;
    color: #22c55e;
}

.favorites-section {
    padding: 30px;
    border-top: 2px solid #e2e8f0;
}

.favorites-section h2 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.4em;
}

#favorites-list {
    display: grid;
    gap: 15px;
}

.favorite-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    position: relative;
    border: 1px solid #e2e8f0;
}

.favorite-item button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.favorite-item:hover button {
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    
    .options {
        grid-template-columns: 1fr;
    }
    
    .button-group {
        grid-template-columns: 1fr;
    }
    
    .input-section, .output-section, .favorites-section {
        padding: 20px;
    }
}
