html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.drop-down02 {
    position: relative;
}

.drop-down02:hover .sub-menu02 {
    position: absolute !important;
    left: 100%;
    top: 0;
    display:block;
}

.drop-down02 .dropdown-toggle {
    padding: .25rem 1.1rem !important;
}

@media screen and (max-width :767px) {
    .drop-down02 .sub-menu02 {
        position: static !important;
    }
}
.previous-tab,
.next-tab,
.previous-tab2,
.next-tab2,
.stebs-btn {
    background-color: #006969;
    box-shadow: 1px 1px #006969;
    border-radius: 4px;
    color: #fff;
    padding: 10px 15px;
    margin: 10px;
    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
    border: 1px solid #444348;
    display: inline-block;
}

.previous-tab:hover,
.next-tab:hover {
    background-color: #004949;
    box-shadow: 1px 1px #004949;
}

/* Custom CSS from last project to be changed to the newe style*/
.input-group-addon {
    width: auto;
    min-width: 16px;
    padding: 4px 8px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
    background-color: #eeeeee;
    border: solid #cccccc;
    border-width: 1px 0;
}

.my-confirm-box {
    margin: 10px 20px;
    padding: 10px 10px;
    display: inline-flex;
    justify-content: space-evenly;
    align-items: center;
}
.my-pager-box {
    display: inline-flex;
    justify-content: space-between;
    align-items: end;
}

.custom-button {
    width: 100px; /* Set the desired width for the buttons */
}
.custom-button-secondary {
    width: 80px;
    
}

.form-control.checkbox{
    all:revert;
}

.inactive-clubs-table {
    background-color: #FFEFEF; /* You can replace 'light pink' with any specific color code if needed */
}
/* This class to disable anchor elements of the current page in pagendation */
.active-disabled {
    pointer-events: none;
    cursor: not-allowed;
    font-weight: bold; /* Makes the text bold */
}

.img-responsive {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: auto;
}

.img-icon {
    height:30px;
    max-width: auto;
}

/* Cheque Requisitions styles */
.form-section {
    border: 0px solid #000;
    padding: 10px;
    margin-bottom: 10px;
}

.header {
    background-color: #000;
    color: #fff;
    padding: 10px;
    text-align: left;
}

.signature-box {
    height: 60px;
}

.vertical-line {
    border-left: 2px solid #000;
}

@media print {
    .form-section {
        page-break-inside: avoid;
    }

    .flex-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .vertical-line {
        width: 2px;
        background-color: #000;
        margin: 0 10px;
        height: auto;
    }
}

/* Cheque Requisition CSS*/
textarea.signature-box {
    resize: none; /* Prevents manual resizing */
    overflow-wrap: break-word; /* Ensures long words break and wrap */
    font-size: smaller; /* Adjust the font size */
    width: 100%; /* Ensures full width */
    line-height: 1.5; /* Space out text for readability */
    height: auto; /* Adjust height based on content */
    min-height: 50px; /* Ensures minimum height */
    padding: 2px;
    text-align: left;
    white-space: pre-wrap;
}