.fc-pro-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fc-pro-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.fc-pro-filter-group {
    margin-bottom: 15px;
}

.fc-pro-filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.fc-pro-filter-group input,
.fc-pro-filter-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.fc-pro-filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.fc-pro-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fc-pro-btn-primary {
    background: #007cba;
    color: white;
}

.fc-pro-btn-primary:hover {
    background: #006ba1;
}

.fc-pro-btn-secondary {
    background: #6c757d;
    color: white;
}

.fc-pro-btn-secondary:hover {
    background: #5a6268;
}

.fc-pro-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.fc-pro-comparison-table th,
.fc-pro-comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.fc-pro-comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.fc-pro-comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.fc-pro-bank-logo {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
}

.fc-pro-compare-checkbox {
    transform: scale(1.2);
}

.fc-pro-comparison-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #007cba;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.fc-pro-comparison-count {
    font-weight: 600;
}

.fc-pro-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
}

.fc-pro-modal-content {
    background: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 1200px;
    position: relative;
}

.fc-pro-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
}

.fc-pro-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.fc-pro-comparison-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
}

.fc-pro-comparison-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.fc-pro-comparison-card-body {
    margin-bottom: 20px;
}

.fc-pro-comparison-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.fc-pro-comparison-label {
    font-weight: 600;
    margin-right: 10px;
}

.fc-pro-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.fc-pro-page-btn {
    padding: 8px 15px;
    border: 1px solid #dee2e6;
    background: white;
    cursor: pointer;
    border-radius: 4px;
}

.fc-pro-page-btn.active {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

@media (max-width: 768px) {
    .fc-pro-comparison-table {
        display: block;
        overflow-x: auto;
    }

    .fc-pro-comparison-grid {
        grid-template-columns: 1fr;
    }

    .fc-pro-modal-content {
        margin: 20px;
        padding: 20px;
    }
}