/*!
 * UX Travel Agency - Main Styles
 * Main stylesheet containing global layout, typography, and custom UI styles for this project.
 * @since 1.0.0
 */
/* =============
   Global Styles
   ============= */
.md-container {
    max-width: 600px;
    margin-top: 50px;
}
.page-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.title-color {
    font-family: Tahoma, sans-serif;
    color: #62828e;
    font-weight: 500;
}
.table thead th,
.table tbody td {
    color: #091931;
    font-size: 18px;
}
.cell-md-width {
    min-width: 180px;
}
.cell-sm-width {
    min-width: 135px;
}
.sidebar-logo {
    display: flex;
    justify-content: center;
    padding: 10px 15px;
}
#sidebar-logo-full {
  display: flex;
}
.sidebar-toggled #sidebar-logo-full {
  display: none;
}
#sidebar-logo-small {
  display: none;
}
.sidebar-toggled #sidebar-logo-small {
  display: flex;
}
.required:after {
    content: " *";
    font-size: 14px;
    color: #ff0000;
}
.upload-photo,
.update-photo {
    font-size: 15px;
    padding: 3px;
}
.update-photo {
    margin-top: 10px;
}
.thumbnail-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}
.medium-img {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

/* =======================
   Customer Invoice Styles
   ======================= */
.w-50 {
    width: 50%;
}
.table-border-0,
.table-border-0 tr,
.table-border-0 tr th,
.table-border-0 tr td {
    border: none!important;
}
.invoice-container {
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    padding: 50px 30px;
    margin: 20px 0;
}
.invoice-top-right {
    text-align: right;
}
.invoice-top-right p {
    margin: 0;
    color: #0919316b;
}
.invoice-top-right h4 {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
}
.invoice-top-right h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #091931;
}
.invoice-middle {
    margin: 20px 0;
}
.invoice-middle-left {
    text-align: left;
}
.invoice-middle-left p,
.invoice-middle-right p {
    color: #091931;
    font-size: 18px;
}
.invoice-middle-left h4,
.invoice-middle-right h4 {
    font-size: 20px;
    font-weight: 600;
    color: #091931;
}
.invoice-middle-right {
    text-align: right;
}
.invoice-middle-right h4 {
    color: #0919316b;
}
.invoice-item-table,
.invoice-item-table tr td,
.invoice-item-table tr th {
    color: #091931;
    border-color: #b9b9b9;
}
.invoice-bottom {
    margin-top: 40px;
}
.invoice-bottom-payment h4 {
    font-size: 18px;
    font-weight: 700;
}
.invoice-bottom-total-box p {
    margin-bottom: 0;
    font-size: 16px;
}
.invoice-bottom-total-box span {
    width: 70px;
    display: inline-block;
}
.invoice-signature {
    display: inline-block;
    width: 250px;
    border-top: 1px solid #dddddd;
    padding-top: 5px;
    text-align: center;
    margin-top: 170px;
}
.print-button {
    display: flex;
    justify-content: center;
}

/* =================
   Settings Page Styles
   ================= */
.section-title {
    margin-top: 30px;
    margin-bottom: 20px;
}
.section-title h5 {
    color: #62828e;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}
.section-title hr {
    border: 0;
    border-top: 2px solid #e3e6f0;
    margin: 15px 0;
}
.placeholder-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px 20px;
    background-color: #f8f9fa;
    color: #6c757d;
    min-height: 150px;
}
.placeholder-box i {
    font-size: 48px;
    margin-bottom: 10px;
}
.logo-preview {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}
.favicon-preview {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}
.card-header {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6 !important;
}
.card-header h6 {
    color: #62828e;
    margin: 0;
}
.card-body {
    padding: 30px;
}

/* =================
   Responsive Styles
   ================= */
@media (max-width: 767px) {
    #sidebar-logo-full {
        display: none;
    }
    #sidebar-logo-small {
        display: flex;
    }
    
    .placeholder-box {
        min-height: 120px;
    }
    
    .placeholder-box i {
        font-size: 36px;
    }
}