body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: url('/uploads/fondo.png') no-repeat center center fixed;
    background-size: cover;
    color: #c9d1d9;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #58a6ff;
}

a {
    color: #58a6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: 0;
    border-top: 1px solid #30363d;
    margin: 20px 0;
}

.header-links {
    margin-bottom: 20px;
}

.header-links a {
    margin-right: 10px;
    background-color: #238636;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

.header-links a:hover {
    background-color: #2ea043;
}

.post {
    background: rgba(22, 27, 34, 0.95);
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
}

.titulo-post {
    font-size: 18px;
    color: #c9d1d9;
    font-weight: bold;
}

.imagen-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.imagen-preview img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #30363d;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.imagen-preview img:hover {
    transform: scale(1.05);
}

form {
    background: rgba(22, 27, 34, 0.95);
    padding: 20px;
    border: 1px solid #30363d;
    border-radius: 6px;
    max-width: 400px;
    margin-bottom: 30px;
}

form input[type="email"],
form input[type="password"] {
    width: 90%;
    padding: 10px;
    background-color: #0d1117;
    color: #c9d1d9;
    border: 1px solid #30363d;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

form button {
    background-color: #238636;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

form button:hover {
    background-color: #2ea043;
}