﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}


/* ==========================================================================
   Estilos de la Tarjeta de Usuario (Outlook Style)
   ========================================================================== */

.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.avatar-circle-lg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-card-menu {
    width: 300px;
    border-radius: 0.5rem;
}

.dropdown-item-custom {
    padding: 0.6rem 1.2rem;
    transition: all 0.2s ease-in-out;
}

    .dropdown-item-custom:hover {
        background-color: #f8f9fa;
        border-radius: 0.25rem;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }