/* Estilos principales */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
}

.header {
    height: 100%; 
    background-color: #ffffff;
}

.header img {
    max-width: 320px; 
    max-height: 87px; 
    height: 87px;
}

.header-content {
    background-color: #f3f3f3;
}

.body-content {
    background-color: #ffffff;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-body {
    padding: 15px;
}

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

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.input-group-addon.bg-primary {
    background-color: #478fca;
    color: white;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
}

.no-border-left {
    border-left: 0;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: #337ab7;
}

.text-danger {
    color: #a94442;
}

.text-warning {
    color: #8a6d3b;
}

.text-capitalize {
    text-transform: capitalize;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

.img-bordered-primary {
    border: 3px solid #478fca;
}

.hidden {
    display: none;
}

.hide {
    display: none !important;
}

.divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

/* Estilos para impresión */
@media print {
    .no-print, .no-print * {
        display: none !important;
    }
}

/* Estilos para dispositivos pequeños */
@media (max-width: 767px) {
    .col-xs-12 {
        width: 100%;
    }
}

/* Estilos para dispositivos medianos */
@media (min-width: 768px) and (max-width: 991px) {
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
}

/* Estilos para dispositivos grandes */
@media (min-width: 992px) and (max-width: 1199px) {
    .col-md-3 {
        width: 25%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-15 {
        width: 100%;
    }
}

.info {
    background-color: #d9edf7;
}

.warning {
    background-color: #fcf8e3;
}

.success {
    background-color: #dff0d8;
}

.danger {
    background-color: #f2dede;
}