/* BODY */
body{
    font-family: Arial, Helvetica, sans-serif;
}

/* INPUTS */
input{
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #4b5563;
    background-color: #1f2937;
    color: white;
    outline: none;
}

input:focus{
    border: 1px solid #6366f1;
}

/* BOTONES */
.submit-btn{
    background-color: #4f46e5;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.submit-btn:hover{
    background-color: #4338ca;
}

.edit-btn{
    background-color: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    margin-right: 5px;
    transition: 0.3s;
}

.edit-btn:hover{
    background-color: #1d4ed8;
}

.delete-btn{
    background-color: #dc2626;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.delete-btn:hover{
    background-color: #b91c1c;
}

/* TABLA */
.table-header{
    padding: 14px;
    text-align: left;
    color: #d1d5db;
    font-weight: bold;
}

.table-cell{
    padding: 14px;
    color: #e5e7eb;
}

/* FOOTER */
.footer{
    background-color: #16163a;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.social-icons img{
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.social-icons img:hover{
    transform: scale(1.1);
}

.footer-text{
    color: white;
    font-size: 14px;
}