/* editor.css */

.editor-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    background-color: #1e1e1e;
    border-radius: 12px;
    border: 1px solid #333;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 700;
    color: #a0a0a0;
}

.form-control {
    width: 100%;
    padding: 12px;
    background-color: #2c2c2c;
    border: 1px solid #444;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    box-sizing: border-box; /* 패딩과 테두리를 너비에 포함 */
}

.form-control:focus {
    outline: none;
    border-color: #4f80c8;
    box-shadow: 0 0 0 3px rgba(79, 128, 200, 0.3);
}

textarea.form-control {
    min-height: 400px;
    resize: vertical;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
}

.cta-button {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #007BFF, #6f42c1);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(111, 66, 193, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.5);
}

.delete-button {
    background: linear-gradient(45deg, #dc3545, #b21f2d);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

.delete-button:hover {
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.5);
} 