.button-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.button-group {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid;
    gap: 8px;
    transition: transform 0.5s;
}

.button:hover {
    transform: scale(1.05);
}

.group-button {
    border-color: #ffbba3;
    color: #000000;
}

.chat-button {
    border-color: #a3e7ff;
    color: #000000;
}

.group-button svg path {
    fill: #ffbba3;
}

.chat-button svg path {
    fill: #a3e7ff;
}

svg {
    height: 20px;
    width: 20px;
}

.button-group span {
    font-size: 16px;
    color: #000000;
}

body {
    background-color: #ddf6ff;
    font-family: 'Montserrat', Sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    font-family: 'Alice', Sans-serif;
    color: #333;
    text-align: center;
    font-size: 27px;
}

h3 {
    color: #333;
    text-align: center;
    font-size: 18px;
}

.container {
    max-width: 350px;
    width: 90%;
    background-color: white;
    padding: 35px 30px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), inset 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    width: 80px;
}

p {
    font-size: 16px;
    color: #555;
}

span {
    color: #ffbba3;
}

.input-button-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

#refLink {
    flex: 1;
    min-width: 150px;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.input-button-wrapper button {
    flex-shrink: 0;
    padding: 8px 12px;
    border: none;
    background-color: #ffffff;
    color: #000000;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: inset 0px 0px 5px #ffbba3;
    transition: box-shadow 0.5s ease;
}

button:hover {
    box-shadow: inset 0px 0px 15px #ffbba3;
}

/* Классы для таблиц можно оставить, если они используются на соответствующих страницах */
.table-container {
    border-radius: 8px;
    overflow: hidden;
}

.referrals-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 3px;
}

.referrals-table th, .referrals-table td {
    padding: 10px 15px;
    text-align: left;
    position: relative;
}

.referrals-table th {
    background-color: #fff2ee;
    color: #333;
    font-size: 13px;
}

.referrals-table td {
    background-color: #eefbff;
    color: #999;
    font-size: 12px;	
}

.referrals-table tr th, .referrals-table tr td {
    border-right: 3px solid #ffffff;
}

.referrals-table tr th:first-child, .referrals-table tr td:first-child {
    border-radius: 8px 0 0 0;
}

.referrals-table tr th:last-child, .referrals-table tr td:last-child {
    border-right: none;
    border-radius: 0 8px 0 0;
}

.referrals-table tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.referrals-table tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}
