/* Общие стили */
.ccp-calculator-container {
    font-family: Arial, sans-serif;
    background: #f4f7f8;
    margin: 0px;
}

.ccp-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ccp-calculator {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ccp-form-wrapper {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ccp-section-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.ccp-parameters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.ccp-parameter {
    display: flex;
    flex-direction: column;
}

.ccp-parameter label {
    margin-bottom: 6px;
    font-size: 14px;
}

/* селекты */
select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Загрузка файлов */
.ccp-files-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.ccp-file-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px;
    min-height: 150px;
    background: #fafafa;
    overflow: auto;
}

.ccp-file-section h4 {
    margin: 6px 0;
    font-size: 14px;
    text-align: center;
}

/* PDF предпросмотр */
.ccp-pdf-preview {
    width: 100%;
    height: 150px;
}

/* Линк для изображений */
.ccp-thumb-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    margin-top: 4px;
}

.ccp-thumb-link img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* Блок оплаты */
.ccp-payment {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.ccp-amount {
    font-weight: bold;
    font-size: 24px;
    color: #3393cc;
}

/* Форма заказа */
.ccp-form-group {
    margin-bottom: 10px;
}

.ccp-form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="file"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Кнопка */
.ccp-submit-btn {
    width: 100%;
    background-color: #3393cc;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.ccp-submit-btn:hover {
    background-color: #2877a8;
}

/* Адаптивность */
@media (max-width: 768px) {
    .ccp-container {
        flex-direction: column;
    }
    .ccp-parameters {
        grid-template-columns: 1fr;
    }
    .ccp-files-container {
        flex-direction: column;
    }
    .ccp-file-section {
        min-height: auto;
    }
}