body{
margin:0;
font-family:Segoe UI;
display:flex;

background:url("../images/4947b76656ae05a541c2c9db88bc3de3.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
background-attachment:fixed;

color:white;
}

/* ================= SIDEBAR PRO ================= */
.sidebar {
    width: 250px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    animation: slideIn 0.6s ease;
}

.sidebar h2 {
    text-align: center;
    color: #ff4fd8;
    margin-bottom: 30px;
    font-size: 36px;
}

.sidebar button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.08);
    color: white;
    transition: 0.3s;
}

.sidebar button:hover {
    background: #ff4fd8;
    transform: scale(1.05);
}

/* ================= MAIN ================= */
.main {
    flex: 1;
    padding: 25px;
    animation: fadeUp 0.5s ease;
}

h1 {
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* ================= CONTENEDOR GLASS ================= */
#contenedor {
    margin-top: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ================= INPUTS ================= */
input {
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: white;
}

input::placeholder {
    color: #ccc;
}

/* ================= BOTONES PRO ================= */
button {
    padding: 10px 14px;
    margin: 5px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(45deg, #ff4fd8, #00e5ff);
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* ================= TABLA PRO ================= */
table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

table th {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    color: #00e5ff;
}

table td {
    text-align: center;
    padding: 8px;
}

table tr:hover {
    background: rgba(255,255,255,0.05);
}

/* ================= GANTT PRO ================= */
#gantt {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

#gantt div {
    padding: 10px;
    border-radius: 12px;
    background: linear-gradient(45deg, #00e5ff, #ff4fd8);
    animation: pop 0.4s ease;
}

/* ================= ANIMACIONES ================= */
@keyframes slideIn {
    from {transform: translateX(-100%);}
    to {transform: translateX(0);}
}

@keyframes fadeUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes pop {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}