@font-face {
    font-family: "cygre";
    src: url("/static/fonts/cygre_default/Cygre-Light.ttf");
    font-weight: normal;
}
@font-face {
    font-family: "cygre";
    src: url("/static/fonts/cygre_default/Cygre-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "cygre";
    src: url("/static/fonts/cygre_default/Cygre-ExtraBold.ttf");
    font-weight: 800;
}
@font-face {
    font-family: "cygre";
    src: url("/static/fonts/cygre_default/Cygre-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "cygre";
    src: url("/static/fonts/cygre_default/Cygre-SemiBold.ttf");
    font-weight: 600;
}
a {
    color: #000;
    text-decoration: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 24px;
    font-weight: 500;
    height: 100%;
}

body {
    font-family: "cygre";
    font-weight: normal;
    margin: 0;
    background-color: #f4f4f9;
    height: 100%;
}
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main.main-content {
    flex: 1 0 auto; /* <<< это важно! растягиваем main */
}

footer.footer {
    flex-shrink: 0; /* футер не сжимается */
}
.wrapper-header {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
    padding: 7px 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.menu-header {
    gap: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.menu-header a {
    font-size: 14px;
}

.brn-div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer {
    background-color: #fff;
    padding: 40px 0;
    border-radius: 30px;
    position: relative;
    padding: 25px;
}
.footer__inner {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    margin: 20px 0;
}
.footer h4 {
    margin: 20px 0;
}

.btn_home {
    background: transparent;
    border: 1px solid gray;
    padding: 5px 20px;
    border-radius: 7px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    color: #000;
    text-decoration: none;
}

h3 {
    color: #333;
    margin: 0 0 10px 0;
}

.container {
    width: 100%;
    max-width: 1390px;
    margin: 0 auto;
}

/*appointments*/
.booking-table-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    /*height: 100vh;*/
    /*font-family: "Segoe UI", sans-serif;*/
}

.booking-panel {
    background: #fff;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1300px;
    overflow-x: auto;
}

h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
}

th,
td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    font-size: 16px;
}

th {
    font-weight: bold;
    font-size: 20px;
}

.status {
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.active {
    background-color: #e6f4ea;
    color: #0f2c10;
}

.expiring {
    background-color: #fff3e0;
    color: #ef6c00;
}

.expired {
    background-color: #fbe9e7;
    color: #471b0e;
}

.cancelled {
    background-color: #ede7f6;
    color: #5e35b1;
}

.cancel-btn {
    background-color: rgba(244, 67, 54, 0);
    color: #b61717;
    border: 1px solid;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.cancel-btn:hover {
    background-color: #d32f2f;
    color: #fff;
}

/* personal_info */
.client-panel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 200px;
}

.client-panel {
    background: #fff;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    /*font-family: "Segoe UI", sans-serif;*/
    color: #333;
}

.client-panel label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
}

.client-panel input,
.client-panel textarea {
    color: rgba(62, 61, 61, 0.5490196078);
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box;
}

.client-panel button {
    margin-top: 20px;
    padding: 10px 16px;
    background-color: rgba(88, 164, 91, 0.5803921569);
    color: #444141;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}

.client-panel button:hover {
    background-color: #45a049;
}

.error-message {
    color: red;
    font-size: 0.9em;
    display: none;
    margin-top: 2px;
}

input.error {
    border-color: red;
}

.wrapper-btn {
    display: flex;
    justify-content: center;
}

/* tariffs */
.tariff-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
    /*font-family: "Segoe UI", sans-serif;*/
}

.tariff-panel {
    background: #fff;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1100px;
}

.info-box {
    background-color: #f0f4f8;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-size: 1.1em;
    text-align: center;
}

th {
    width: 200px;
}

tr:hover {
    background-color: #f9f9f9;
}

tr.selected {
    background-color: #e3f2fd !important;
}

.discount {
    color: rgba(56, 142, 60, 0.5215686275);
    font-weight: bold;
}

.free-hours {
    color: #669ecf;
    font-weight: bold;
} /*# sourceMappingURL=style.css.map */
