.status-info {
    text-align: right;
    font-size: 0.85em !important; /* texto menor */
    color: #666 !important;         /* cor mais suave */
    margin-top: 1em;
}

.status-info .label-info {
    font-weight: bold;
    margin-right: 5px;
}

.status-info .info-value {
    font-weight: normal;
}

.card-header {
    background-color: #eef5fd;
    border-bottom: 2px solid #3498db;
    padding: 12px 15px;
}

.card-title {
    margin-bottom: 0;
    font-weight: 600;
    color: #2980b9;
    font-size: 18px;
}

.box {
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.box-header {
    border-radius: 6px 6px 0 0;
}

.mailbox-read-info {
    padding: 15px;
}

.mailbox-read-info h5 {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

.formatted-text {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    /*margin-top: 5px;*/
}

.label-info {
    font-weight: 600;
    color: #2c3e50 !important;
    background-color:rgb(255, 255, 255) !important;
}

body span.label-info {
    text-align: unset !important;
    /*text-align: left !important;*/
}

.info-value {
    display: inline-block;
    margin-left: 5px;
    color: #333;
    text-align: justify;
}

.alert {
    border-radius: 4px;
}

.form-group {
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Estilos para o datepicker */
.datepicker .day.available {
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

.input-group-addon {
    background-color: #f8f9fa;
}

/* Melhorias para o formulário */
.schedule-form {
    width: 100%;
    padding: 15px;
}

.schedule-form .form-control {
    height: 40px;
    border-radius: 4px;
}

.schedule-form input[type="submit"] {
    padding: 8px 20px;
    border-radius: 4px;
    background-color: #3498db;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.schedule-form input[type="submit"]:hover {
    background-color: #2980b9;
}

/* Estilo para separar seções de informações */
.info-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.card-header i {
    margin-right: 10px;
}

/* ESTILIZAÇÃO APRA HISTÓRICO E PARECER */

.history-entry {
    background-color: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    margin-bottom: 15px;
}

.history-entry:last-child {
    margin-bottom: 0;
}

.history-entry .entry-header {
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.history-entry .entry-author {
    font-weight: bold;
    color: #333;
}
.history-entry .entry-date {
    font-size: 0.9em;
    color: #777;
}
.history-entry .entry-body {
    padding: 15px;
}
.history-entry .entry-footer {
    padding: 8px 15px;
    border-top: 1px solid #f4f4f4;
    background-color: #f9f9f9;
    font-size: 0.9em;
}

/* ESTILIZAÇÃO DOS CARDS DE ARQUIVOS */

.file-attachment-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}
.file-attachment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa; /* Um fundo cinza bem claro */
    border: 1px solid #dee2e6;  /* Uma borda sutil */
    border-radius: 5px;
    margin-bottom: 8px;
    transition: background-color 0.2s ease-in-out;
}

/*.file-attachment-item:first-child {*/
/*    margin-top: 8px;*/
/*}*/

.file-attachment-item:hover {
    background-color: #e9ecef; /* Efeito hover para interatividade */
}
.file-info a {
    font-weight: 500;
    color: #0056b3;
    text-decoration: none;
}
.file-info .fa {
    margin-right: 8px;
    color: #007bff;
}
.file-info a:hover {
    text-decoration: underline;
}
.file-date {
    font-size: 0.85em;
    color: #6c757d; /* Cor de texto secundária */
    white-space: nowrap;
    margin-left: 15px;
}