/*
* appmain.css
* File include app pages specific css only
******************************************************************************/

.menu .app-brand.logo {
    height: 64px;
    margin-top: 12px;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.app-brand-logo.logo40 img {
    width: 40px;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.app-brand-logo.logo200 img{
    width: 200px;   
}

.app-brand-logo.logo300 img {
    width: 300px;
}

.app-brand-text.logo {
    font-size: 25px;
    letter-spacing: 0.1px;
    color: #c9012f !important;
}

/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 74px !important;
}
/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}
.docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page,
.docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 62px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.logo-blocks > * {
  display: block !important;
}

.logo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .logo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .logo-only-element class with .logo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.logo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.logo-vertical-spacing.logo-only-element > :first-child {
  margin-top: 0 !important;
}

.logo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.logo-vertical-spacing-lg.logo-only-element > :first-child {
  margin-top: 0 !important;
}

.logo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.logo-vertical-spacing-xl.logo-only-element > :first-child {
  margin-top: 0 !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-logo .btn-group .text-truncate {
    width: 231px;
    position: relative;
  }
  #dropdown-variation-logo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* Layout logo
******************************************************************************/

.layout-logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-logo-placeholder img {
  width: 900px;
}
.layout-logo-info {
  text-align: center;
  margin-top: 1rem;
}

/*
* Page styles for app
******************************************************************************/

.requiredfield {
    color: red;
    font-weight: 600;
}
.bottommargin0{
    margin-bottom:0px;
}
.topmargin30{
    margin-top:30px;
}
.validation-message {
    color: #dc3545; /* Bootstrap danger color */
    font-size: 0.875rem; /* Smaller font size (14px) */
    margin-top: 0.25rem; /* Small spacing from the input */
}
.width100 {
    min-width: 100px;
    flex-grow: 0;
}
.width150 {
    min-width: 150px;
    flex-grow: 0;
}
.width200 {
    min-width: 200px;
    flex-grow: 0;
}