.csi-form-container {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-top: 25px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.csi-form-container h3 {
    margin-top: 0;
}

.csi-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.csi-field.csi-full-width {
    grid-column: 1 / -1;
	margin-top: 10px;
}

.csi-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.csi-field input[type="number"],
.csi-field input[type="email"],
.csi-field textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#csi-submit-btn {
    display: inline-block;
    background-color: #2c3e50; /* Цвет вашей кнопки */
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
	margin-top: 10px;
}

#csi-submit-btn:hover {
    background-color: #34495e; /* Цвет при наведении */
}

#csi-response-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

#csi-response-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#csi-response-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* Стили для контейнера сообщений */
.csi-message-box {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    grid-column: 1 / -1; /* Растягиваем на всю ширину грида */
    text-align: center;
}

/* Сообщение об успешной отправке */
#csi-response-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

/* Сообщение об ошибке (отправка или валидация) */
.csi-message-box.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Стиль для отключенной кнопки */
#csi-submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}
/* --- НОВЫЕ СТИЛИ для ссылки-якоря --- */
.csi-scroll-to-form {
    display: block;
    text-align: right;
    margin: 10px 0;
    font-size: 0.9em;
    cursor: pointer;
    text-decoration: underline;
    color: #337ab7; /* Можете изменить цвет */
}

.csi-scroll-to-form:hover {
    color: #23527c;
}