﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*h2 {
    color: #444;
    text-align: center;
    margin-bottom: 30px;
}*/

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: .3;
    background-color: black;
    background-repeat: no-repeat;
}

ul.lista-estilizada {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: auto;
}

    ul.lista-estilizada li {
        background: linear-gradient(135deg, #d8d8d8, #bdbdbd);
        color: #2c2c2c;
        padding: 15px 20px;
        margin-bottom: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        position: relative;
        overflow: hidden;
    }

        ul.lista-estilizada li::before {
            content: "•";
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 22px;
            color: #757575;
        }

        ul.lista-estilizada li:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        ul.lista-estilizada li span {
            margin-left: 25px;
            display: block;
        }

/**/
.comments-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.comment-author {
    font-size: 15px;
    font-weight: bold;
    color: #0078d7;
}

.comment-date {
    font-size: 12px;
    color: #666;
}

.comment-message {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/**/


.en-construccion-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
    background: #24292e;
    color: #ffcc00;
    border-radius: 18px;
    margin: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.16);
}

.icono {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: shake 1.2s infinite alternate;
}

@keyframes shake {
    0% {
        transform: rotate(-7deg);
    }

    100% {
        transform: rotate(7deg);
    }
}
