 .new-post {
        width: 100%;  
        margin: 0;             
        padding: 2rem;         
        background: var(--pure-white);
        border: 1px solid var(--silver-gray);
        border-radius: 12px;
    }

        .new-post h1 {
            text-align: center;
            margin-bottom: 1rem;
        }

        .new-post textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--ash-gray, #ccc);
            border-radius: 5px;
            resize: vertical;
            min-height: 80px;
            font-size: 1rem;
        }

        .new-post input[type="file"] {
            margin-top: 1rem;
        }

        .image-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1rem;
        }

        .image-preview img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid #ccc;
        }

        .new-post button {
            margin-top: 1rem;
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            background-color: var(--midnight-navy, #0057b7);
            color: var(--white, #fff);
            font-size: 1rem;
            cursor: pointer;
        }

        .new-post button:hover {
            background-color: var(--steel-slate, #004494);
        }