/* Telas pequenas (celulares) */
@media (max-width: 576px) {
    .auth-container {
        margin: 20px auto;
        padding: 20px;
    }
    
    .post-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-header img {
        margin-bottom: 10px;
    }
    
    .post-actions {
        flex-wrap: wrap;
    }
    
    .post-actions button {
        flex: 1 0 48%;
        margin-bottom: 5px;
    }

    .post-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .post-form-actions .file-input-wrapper {
        width: 100%;
    }

    .post-form-actions .publish-btn {
        width: 100%;
        justify-content: center;
    }

    .notification-dropdown {
        width: min(92vw, 360px);
        right: -10px;
    }
}

/* Telas médias (tablets) */
@media (min-width: 577px) and (max-width: 992px) {
    .dashboard {
        grid-template-columns: 1fr;
    }

    .dashboard-page .sidebar {
        position: static;
        top: auto;
    }

    .dashboard-page .post-actions .edit-btn {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .dashboard {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dashboard-page .sidebar {
        position: static;
        top: auto;
    }
}
