@import url("/local/templates/.default/css/app.min.css");

table.no-hover:not(.table-reset) tbody tr:nth-child(odd) {
    background-color: #efd3d2;
}
table:not(.table-reset) thead {
    background: #b7413e;
}
table:not(.table-reset) th {
    padding: 12px 19px 16px;
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.26667;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}
#side-buttons {
    position: fixed;
    bottom: 90px;
    right: 45px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.icon {
    margin-bottom: 10px;
    color: white;
    border: none;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.viber { background-color: #665CAC; }
.telegram { background-color: #0088cc; }
.whatsapp { background-color: #25D366; }
.instagram { background-color: #bc2a8d; }
.telegram-channel { background-color: #0088cc; }
.youtube { background-color: #FF0000; }

.icon:hover {
    text-decoration: none;
}
.viber:hover {
    background-color: white;
    color: #665CAC;
}
.telegram:hover {
    background-color: white;
    color: #0088cc;
}
.whatsapp:hover {
    background-color: white;
    color: #25D366;
}
.instagram:hover {
    background-color: white;
    color: #bc2a8d;
}
.telegram-channel:hover {
    background-color: white;
    color: #0088cc;
}
.youtube:hover {
    background-color: white;
    color: #FF0000;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.form-group label {
    margin-bottom: 5px;
    text-align: left;
    font-size: 14px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 5px;
}
.form-row {
    display: flex;
    justify-content: space-between;
}
.form-row .form-group {
    flex: 1;
    margin-right: 10px;
}
.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}