.dc-main {
    padding: 15px;
}
.dc-row::after {
    content: "";
    clear: both;
    display: table;
}

.dc-col-12,
.dc-col-8,
.dc-col-7,
.dc-col-6,
.dc-col-5,
.dc-col-4,
.dc-col-3,
.dc-col-1 {
    float: left;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box; /* Include padding in width */
}

.dc-col-12 {
    width: 100%;
}

.dc-col-8 {
    width: calc(100% / 12 * 8);
}

.dc-col-7 {
    width: calc(100% / 12 * 7);
}

.dc-col-6 {
    width: 50%;
}

.dc-col-5 {
    width: calc(100% / 12 * 5);
}

.dc-col-4 {
    width: calc(100% / 12 * 4);
}

.dc-col-3 {
    width: calc(100% / 12 * 3);
}

.dc-col-1 {
    width: calc(100% / 12);
}
.dc-mb-3 {
    margin-bottom: 1rem;
}
.dc-mt-3 {
    margin-top: 1rem;
}
.dc-mb-4 {
    margin-bottom: 2rem;
}
.dc-mt-4 {
    margin-top: 2rem;
}
.dc-my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}
.dc-p-0 {
    padding: 0;
}
label.dc-label {
    display: block;
    margin-bottom: 0.5rem;
}
.dc-form-control {
    width: 100%;
}

select.dc-select {
    font-size: 16px;
    font-weight: normal;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F1F1F1;
    border-radius: 5px 5px 5px 5px;
    padding: 15px 30px 15px 30px;
}

h3.dc-underline,
h4.dc-underline {
    margin-bottom: 15px;
}
h3.dc-underline span,
h4.dc-underline span {
    border-bottom: 3px solid !important;
}
input[readonly] {
    background-color: #f0f0f0 !important;
}

div.payment-type {
    border: 1px solid #fff;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 12px !important;
    cursor: pointer;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
div.payment-desc {
    padding: 20px;
    padding-top: 0;
    line-height: 1.5em;
}
div.payment-title {
    /*width: 100%;*/
    display: flex;
    align-items: center;
    padding: 20px;
}
div.payment-title span.title {
    color: #6e6e6e;
    font-weight: 700;
}
div.payment-title.selected span.title {
    color: #06A6E3;
    font-weight: 700;
}
div.payment-title span.icon {
    margin-right: 10px;
}
div.set_bg_color {
    background: #e2f1ff;
    border: 1px solid #bdd6ff;
}
.dc-shadow {
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border-radius: 22px;
    padding: 1.5rem 15px;
}
.dc-small {
    font-size: 14px;
}
div.dc-summary {
    background: #F9F9F9;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.dc-end {
    text-align: right !important;
}

@media (max-width: 968px) {
    .dc-col-12,
    .dc-col-8,
    .dc-col-7,
    .dc-col-6,
    .dc-col-5,
    .dc-col-4,
    .dc-col-3,
    .dc-col-1,
    #odustani_btn {
        float: none;
        width: 100%;
    }
    .dc-px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
.dc-alert {
    border-radius: 0.375rem;
    border: 1px solid;
    padding: 1rem;
    margin-bottom: 2rem;
}
.dc-alert-info {
    border-color: #9ec5fe;
    background: #cfe2ff;
}
.dc-alert-warning {
    border-color: #ffe69c;
    background: #fff3cd;
}
.dc-alert-danger {
    border-color: #f1aeb5;
    background: #f8d7da;
    color: #d10000;
}
.dc-button {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0px !important;
    color: #FFFFFF !important;
    border-radius: 5px 5px 5px 5px !important;
    padding: 15px 30px 15px 30px !important;
    border: 0 !important;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}
.dc-button-info {
    background-color: #06A6E3 !important;
}
.dc-button-warning {
    background-color: #e36206 !important;
}
.dc-scrollbox {
    width: 100%;
    height: 150px;
    padding: 10px;
    overflow-y: scroll; /* Enables vertical scroll */
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    font-size: 11px;
}

#reservation_button_disabled {
    background: #ddd !important;
    cursor: not-allowed !important;
}
.dc-chck-custom-checkbox {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #f7f7f7;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.dc-chck-custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.dc-chck-checkmark {
    position: relative;
    height: 24px;
    width: 24px;
    background-color: #ffffff;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    transition: background-color 0.3s;
    border: 2px solid #ddd;
}

.dc-chck-custom-checkbox input:checked + .dc-chck-checkmark {
    border-color: #06a6e3;
}

.dc-chck-checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.dc-chck-custom-checkbox input:checked + .dc-chck-checkmark::after {
    display: block;
}

.dc-chck-custom-checkbox .dc-chck-checkmark::after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #06a6e3;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.dc-chck-label-text {
    flex-grow: 1;
    font-size: 16px;
}
.input-error {
    border-color: red !important;
}

.label-error {
    color: red !important;
}
.dc_table_st td {
    border-bottom: 1px solid #e4e4e4;
    padding: 10px 0;
}