
/*
    ======================================
    
    DASHBOARD PAGE STYLE

    ========================================
*/


.tab button.active 
{
    color: #fff;
    border-bottom: 4px solid #ffd943;
}

.tab button 
{
    background: inherit;
    color: #ffffff9c;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    border-bottom: 4px solid transparent;
}

.tabcontent 
{
    display: none;
}

/*
    ======================================
    
    EMPLOYEES SCHEDULE PAGE STYLE

    ========================================
*/

input[type=checkbox] 
{
    vertical-align: middle;
    width: 25px;
    height: 25px;
    -webkit-box-flex: 20px;
    border: 1px solid #dcdddf;
    cursor: pointer;
}
.day-name
{
    font-size: 20px;
    color: #253246;
    text-transform: capitalize;
    width: 60px;
    font-weight: bold;
    margin-left: 10px;
}
.worktime-day
{
    margin: 10px 0px;
    border-bottom: 1px solid #eee;
    min-height: 60px;
    align-items: center;
}


/*
    ======================================
    
    BARBERSHOP LOGIN PAGE STYLE

    ======================================
*/


.login 
{
    max-width: 560px;
    background: #fff;
    position: relative;
    margin: 15px auto;
    padding: 55px 85px 55px 85px;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    border-radius: 3px;
}

@media (max-width: 560px) 
{
    .login 
    {
        padding-left: 15px;
        padding-right: 15px;
        margin: 30px;
    }
}

.form-input
{
    margin-bottom: 50px;
}


.login input[type="text"],
.login input[type="password"]
{
    border: 1px solid #e6e6e6;
    box-shadow: none;
    color: #555555;
    line-height: 1.2;
    font-size: 18px;
    display: block;
    width: 100%;
    background: transparent;
    height: 55px;
    padding: 0 25px 0 25px;
    border-bottom-right-radius: 2px !important;
    border-top-right-radius: 2px !important;
    margin-bottom: 10px;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus
{
    border-color: rgba(82, 168, 236, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
    outline: 0 none;
}

.login button[type="submit"] 
{
  background: #28d;
  border-color: transparent;
  color: #fff;
  cursor: pointer;
  line-height: 40px;
  font-size: 16px;
  width: 100%;
  border: none;
  border-radius: 3px;
}


input:focus .border
{
    width :100%;
    height: 100%;
}
    
.login button[type="submit"]:hover 
{
    background: #17c;
}

.login button[type="submit"]:focus 
{
  border-color: #05a;
}

.login .forgotPW
{
  font-size: 13px;
  padding: 10px;
  text-align: center;
  display: block;
  margin: 0;
}

.login100-form-title 
{
    font-size: 30px;
    color: #555555;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
    display: block;
    padding-bottom: 32px;
}

.txt1
{
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
    text-transform: uppercase;
    padding-bottom: 11px;
    display: block;
    font-weight: bold;
}


/**********************************/
/*     BUTTON & BASIC STYLES      */
/**********************************/

.custom-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #007bff; /* default color, e.g. blue */
  border: none;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #0056b3;
}

.custom-btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.no-radius {
  border-radius: 0;
}

/* Danger variant */
.custom-btn-danger {
  background-color: #dc3545;
}
.custom-btn-danger:hover {
  background-color: #a71d2a;
}

/* Secondary variant */
.custom-btn-secondary {
  background-color: #6c757d;
}
.custom-btn-secondary:hover {
  background-color: #5a6268;
}


/**********************************/
/*     MODAL & DIALOG STYLES      */
/**********************************/

.custom-modal {
  /* Hidden by default */
  display: none;
  position: fixed;
  z-index: 9999; /* on top of everything */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* Dark overlay */
  background-color: rgba(0, 0, 0, 0.5);
  /* Use flex to center the dialog */
  justify-content: center;
  align-items: center;
}

/* When we add the 'show' class, the modal is visible */
.custom-modal.show {
  display: flex;
}

.custom-modal-dialog {
  background-color: #fff;
  width: 90%;
  max-width: 500px; /* limit on large screens */
  max-height: 80vh; /* prevent the modal from overflowing too far */
  border-radius: 0.25rem;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.custom-modal-content {
  display: flex;
  flex-direction: column;
}

/**********************************/
/*     MODAL HEADER / BODY / FOOTER   */
/**********************************/

.custom-modal-header,
.custom-modal-body,
.custom-modal-footer {
  padding: 1rem;
}

.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
}

.custom-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.custom-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.custom-modal-body {
  flex: 1 1 auto; /* let this grow/shrink with content */
}

.custom-form-group {
  margin-top: 1rem;
}

.custom-textarea {
  width: 100%;
  min-height: 80px;
  padding: 0.5rem;
  font-size: 1rem;
  resize: vertical; /* allow vertical resizing if desired */
}

.custom-modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid #dee2e6;
}

/**********************************/
/*        RESPONSIVE BREAKPOINTS   */
/**********************************/

@media (max-width: 768px) {
  .custom-modal-dialog {
    z-index: 9999;
    width: 70%;
    max-width: none;
    display: flex !important;
  }
}
