Þ.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.modal {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.header h2 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-main);
}

.closeBtn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
}

.field input,
.field select {
    padding: 0.6rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.cancelBtn {
    background: none;
    border: 1px solid #cbd5e1;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--text-muted);
    font-family: inherit;
    font-weight: 500;
}

.submitBtn {
    background: var(--color-primary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    color: white;
    font-family: inherit;
    font-weight: 600;
    transition: background 0.2s;
}

.submitBtn:hover {
    background: var(--color-primary-hover);
}

.submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.tab {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.activeTab {
    composes: tab;
    background: #f1f5f9;
    color: var(--color-primary);
    font-weight: 600;
}

.textarea {
    padding: 0.6rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
}

.stepContent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 250px;
}Œ*cascade08ŒÞ*cascade082}file:///c:/Users/Victoria/OneDrive/Escritorio/Proyectos%20Antigravity/Derpa%20Tech/web/src/components/modals/Modal.module.css