<style>
.m-podbor-wrapper {
    margin: 30px 0;
    width: 100%;
}

.m-podbor-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.m-podbor-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.m-podbor-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.m-podbor-logo {
    border-radius: 8px;
}

.m-podbor-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2c3e50;
    letter-spacing: 1px;
}

.m-podbor-subtitle {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.m-podbor-type {
    display: flex;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
}

.type-option {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    font-weight: 600;
}

.type-option.active {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.m-podbor-form {
    margin: 20px 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

/* ИЗМЕНЕНИЕ: Кнопка теперь желтая */
.m-podbor-button {
    width: 100%;
    background: #fff300;
    color: black;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.m-podbor-button:hover {
    background: #fffb00;
}

.m-podbor-result {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}

.result-title {
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

/* ИЗМЕНЕНИЕ: Бордер карточек теперь желтый */
.recommendation-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #fff300;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.recommendation-priority {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.recommendation-priority.ideal {
    background: #27ae60;
}

.recommendation-priority.growth {
    background: #f39c12;
}

.recommendation-priority.warning {
    background: #e74c3c;
}

.recommendation-size {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 8px 0;
    color: #2c3e50;
}

.recommendation-range {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.recommendation-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 8px 0;
}

/* ИЗМЕНЕНИЕ: Ссылка теперь желтая */
.result-link {
    display: inline-block;
    background: #fff300;
    color: black;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: background 0.2s;
}

.result-link:hover {
    background: #fffb00;
}

/* Адаптивность */
@media (max-width: 768px) {
    .m-podbor-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .m-podbor-type {
        flex-direction: column;
        gap: 4px;
    }
    
    .type-option {
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .m-podbor-title {
        font-size: 1.5rem;
    }
    
    .m-podbor-subtitle {
        font-size: 0.8rem;
    }
    
    .m-podbor-card {
        padding: 15px;
    }
}
</style>