 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    align-items: center;
}

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
    background-image: 
        radial-gradient(#ffffff 8%, transparent 8%),
        radial-gradient(#ffffff 8%, transparent 8%);
    background-position: 0 0, 50px 50px;
    background-size: 100px 100px;
    animation: move-background 20s linear infinite;
}

@keyframes move-background {
    0% { background-position: 0 0, 50px 50px; }
    100% { background-position: 100px 100px, 150px 150px; }
}

.container {
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

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

.note-form input,
.note-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    color: #2c3e50;
}

.note-form input[type="text"] {
    font-size: 1.2rem;
}

.note-form textarea {
    min-height: 200px;
    resize: vertical;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.action-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn {
    background: transparent;
    border: 2px solid #2575fc !important;
    color: #2575fc;
}

.publish-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-btn:hover {
    background: #2575fc !important;
    color: white;
}

.publish-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}