/* Yeni stiller */
.writing-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.writing-paper {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
                url('/api/placeholder/2000/800') no-repeat center center;
    background-size: cover;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}
.writing-tools {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(45deg, #e8d5b7, #f0e0c6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tool-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #8b4513;
    background: rgba(255,255,255,0.9);
    color: #8b4513;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-btn:hover {
    transform: scale(1.1);
    background: #8b4513;
    color: #fff;
}

.letter-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Gloria Hallelujah', serif;
    color: #8b4513;
    font-size: 1.2rem;
}

.form-input {
    font-family: 'Gloria Hallelujah', serif;
    padding: 1rem;
    border: 2px solid rgba(139,69,19,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
    color: #2c1810;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    resize: none;
}

.form-input:focus {
    outline: none;
    border-color: #8b4513;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 15px rgba(139,69,19,0.1);
}

.recipients-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
    min-height: 50px;
    border: 2px solid rgba(139,69,19,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
}

.recipient-tag {
    background: linear-gradient(45deg, #e8d5b7, #f0e0c6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Gloria Hallelujah', serif;
    color: #8b4513;
}

.remove-recipient {
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(139,69,19,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-recipient:hover {
    background: rgba(139,69,19,0.2);
}

.letter-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.action-btn {
    font-family: 'Gloria Hallelujah', serif;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn {
    background: linear-gradient(45deg, #8b4513, #a0522d);
    color: #fff;
    border: none;
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,69,19,0.2);
}

.draft-btn {
    background: transparent;
    border: 2px solid #8b4513;
    color: #8b4513;
}

.draft-btn:hover {
    background: rgba(139,69,19,0.1);
}

       /* Tablet - 768px - 1024px */
@media (max-width: 1024px) {
    .writing-tools {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 1rem;
        padding: 0.5rem;
    }

    .tool-btn {
        width: 40px;
        height: 40px;
    }

    .letter-form {
        gap: 1rem;
    }

    .form-input {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .letter-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .action-btn {
        width: 100%;
        text-align: center;
    }
}

/* Mobil - 768px altı */
@media (max-width: 768px) {
    .writing-container {
        padding: 0.5rem;
    }

    .writing-paper {
        padding: 1rem;
    }

    .writing-tools {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tool-btn {
        width: 35px;
        height: 35px;
    }

    .form-label {
        font-size: 1rem;
    }

    .form-input {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .recipient-tag {
        padding: 0.25rem 0.75rem;
        font-size: 0.9rem;
    }

    .recipients-container {
        padding: 0.25rem;
        min-height: 40px;
    }

    .remove-recipient {
        width: 16px;
        height: 16px;
    }

    .letter-actions {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .action-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Küçük mobil cihazlar - 480px altı */
@media (max-width: 480px) {
    .writing-tools {
        padding: 0.25rem;
    }

    .tool-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .form-group {
        gap: 0.25rem;
    }

    .recipient-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
} 