/* RESET DE ESTILOS PREDETERMINADOS */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* ESTILO DEL CUERPO */
body {
    background: radial-gradient(#1892ca, #0f0f79);
}

/* ESTILO PARA EL TEXTO DE LA OPCIÓN POR DEFECTO */
.nav-tabs .nav-link {
    color: #fff;
}

/* ESTILO PARA EL TEXTO DE LA OPCIÓN ACTIVA */
.nav-tabs .nav-link.active {
    color: #000000;
    background-color: white;
}

/* CONTENEDOR PRINCIPAL CENTRADO */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}

/* ENLACES EN CONTENEDOR FLUIDO */
.container-fluid a {
    font-size: x-large;
    font-weight: bold;
}

/* CUADRO CON FONDO Y SOMBRA */
.box {
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
    padding: 25px 25px;
    border-radius: 20px;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
        0 32px 64px -48px rgba(0, 0, 0, 0.5);
}

/* ENLACES EN ELEMENTOS DIV */
div a {
    color: #036592;
}

/* LÍNEA DE TÍTULO */
.title-line {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* TEXTO DE LÍNEA */
.line {
    flex-grow: 1;
    height: 2px;
    background-color: darkcyan;
    margin: 0 10px;
}

/* TEXTO DE TÍTULO */
.title-text {
    font-weight: bold;
    margin-top: 10px;
    font-size: 24px;
    color: #333;
}

/* CUADRO DE PERFIL */
.profile-box {
    border: 1px solid gray;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
}

/* ICONOS SOCIALES */
.social-icons {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ENLACES DE ICONOS SOCIALES */
.social-icons a {
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid gray;
    margin: 0 5px;
    transition: transform 0.3s, color 0.3s;
    text-decoration: none;
}

/* EFECTO AL PASAR EL CURSOR POR ENCIMA */
.social-icons a:hover {
    transform: scale(1.2);
}

/* CÍRCULO DE PERFIL */
.profile-circle {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* IMAGEN DE PERFIL */
.profile-image {
    border-radius: 50%;
    max-width: 100%;
    max-height: 100%;
}

/* DESCRIPCIÓN DE PERFIL */
.profile-description {
    color: #000000;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

/* LOGO CON DIMENSIONES */
.logo {
    height: 100px;
    width: 90px;
}

/* ENLACES DEL LOGO */
.logo a {
    text-decoration: none;
    color: #000;
}

/* ICONO DEL BOTON ELIMINAR */
.btn-delete {
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-delete:hover {
    background-color: darkred;
}