﻿
body {
    background-color: rgba(244, 245, 251, 1);
    font-family: 'FuturaLight', Arial, Helvetica, sans-serif;
    font-weight: bold;
    color:  #780e2a;
    margin: 0;
}
.dx-fileuploader-files-container .dx-fileuploader-file-container .dx-fileuploader-button-container + .dx-fileuploader-button-container .dx-button {
    display: none;
}
.dx-fileuploader-content > .dx-fileuploader-upload-button {
    display: none;
}
.custom-column {
    margin-right: 200px;
    display: flex;
    justify-content: space-between;
}
.dx-datagrid .dx-column-indicators .dx-header-filter.dx-header-filter {
    color: white
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3a87ad;
    color: white;
    padding: 10px 20px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.navbar-left {
    display: flex;
    align-items: center;
}
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-right: 10px;
}
.logo {
    font-size: 20px;
    font-weight: bold;
}
.navbar-right {
    display: flex;
    align-items: center;
    margin-right: 40px;
}
.user-name {
    margin-right: 15px;
    font-weight: bold;
}
.logout-btn {
    background-color: white;
    color: #007bff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}
.logout-btn:hover {
    background-color: lightgray;
}

.container {
    display: flex;
    height: 100vh;
    position: relative;
    justify-content: center;
}
.left-content {
    width: 220px;
    background-color: white;
    box-shadow: -5px 0px 14px -8px rgba(0, 0, 0, 0.25) inset;
    padding: 10px;
    overflow-y: auto;
    position: fixed;
    top: 50px;
    left: 0;
    bottom: 0;
    max-height: calc(100vh - 50px);

    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
}

.left-content.hidden {
    left: -220px;
    width: 0;
}
.left-content::-webkit-scrollbar {
    display: none;
}
.left-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 10px;
}

.right-content {
    flex-grow: 1;
    padding: 20px;
    position: absolute;
    right: 0;
    left: 240px;
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
}

.right-content.full-width {
    left: 0;
}

.card-style {
    background-color: #fff;
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #e5e8f0 #e5e8f0 #e5e8f0;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*.dx-datagrid .dx-bordered-top-view, .dx-datagrid-container .dx-bordered-top-view {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}
.dx-datagrid .dx-bordered-bottom-view, .dx-datagrid-container .dx-bordered-bottom-view {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}*/

.dx-field-value-static {
    padding: 0;
}
.dx-field-label, .dx-field-item-custom-label-content {
    font-weight: bold;
}
.first-group .dx-form-group-custom-caption, .second-group .dx-form-group-custom-caption {
    border-radius: 6px;
    color: white;
    justify-content: center;
}
.first-group .dx-form-group-custom-caption {
    background-color: #780e2a;
}
.dx-datagrid>.dx-datagrid-headers {
    background-color: #780e2a;
    color: white;
}
.reclamacion-input {
    width: 50%;
}
.hidden-field {
    display: none;
}

@media (max-width: 768px) {
    .left-content {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        height: calc(100vh - 50px);
        width: 200px;
        background: white;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    .menu-toggle {
        display: block;
    }
    .right-content {
        left: 0;
        width: 100%;
    }
    
}

@media (max-width: 800px) {
    .imgs-toolbar {
        display: none !important;
    }
}