/* Estilos gerais */
body {
    background-color: #f8f9fa;
}

/* Estilos do painel administrativo */
.navbar {
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.table th {
    background-color: #f8f9fa;
}

/* Estilos do editor de posts */
.editor-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.editor-column {
    flex: 1;
}

#content {
    min-height: 400px;
    font-family: monospace;
}

#markdown-preview {
    min-height: 400px;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: white;
}

/* Estilos do upload de imagens */
.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.image-preview-item {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    overflow: hidden;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

/* Estilos do carrossel */
.carousel {
    margin-bottom: 2rem;
}

.carousel-item img {
    max-height: 500px;
    object-fit: cover;
}

/* Estilos da página de post */
.post-content {
    line-height: 1.8;
}

.post-meta {
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .editor-container {
        flex-direction: column;
    }
    
    .image-preview-item {
        width: 100px;
        height: 100px;
    }
} 