.ic-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.ic-card {
    width: 100%;
    max-width: 1120px;
    background: #ffffff;
    border: 12px solid green;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.ic-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #e8e8ef;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.ic-icon {
    width: 56px;
    height: 56px;
    background: #eef2ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.ic-header h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    color: #114a9f;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.ic-note {
    margin: 0 0 28px;
    color: #333333;
    font-size: 16px;
    line-height: 1.7;
}

.ic-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.ic-form-section,
.ic-results-section {
    width: 100%;
}

.ic-field {
    margin-bottom: 20px;
}

.ic-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
    color: #26263a;
}

.ic-field input,
.ic-field select {
    width: 100%;
    height: 54px;
    border: 1px solid #d7d8e2;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 17px;
    color: #3b3b4f;
    background: #ffffff;
    box-sizing: border-box;
    outline: none;
}

.ic-field input:focus,
.ic-field select:focus {
    border-color: green;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.ic-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ic-inline-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ic-inline-input input {
    flex: 1;
}

.ic-inline-input span {
    min-width: 48px;
    color: #66687a;
    font-size: 16px;
}

.ic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    border: none;
    border-radius: 999px;
    background: green;
    color: #ffffff;
    padding: 16px 28px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ic-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.ic-results-box {
    background: #f7f5ff;
    border: 1px solid #e4dcff;
    border-radius: 18px;
    padding: 22px;
}

.ic-results-title {
    display: inline-block;
    background: green;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.ic-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e7e1fb;
    font-size: 17px;
    color: #2d2d3a;
}

.ic-result-row:last-child {
    border-bottom: none;
}

.ic-result-row strong {
    color: #111827;
    text-align: right;
    font-size: 17px;
}

.ic-schedule-section {
    margin-top: 34px;
}

.ic-schedule-section h3 {
    margin: 0 0 16px;
    color: #114a9f;
    font-size: 28px;
    font-weight: 700;
}

.ic-table-wrap {
    overflow-x: auto;
    border: 1px solid #e6e7ee;
    border-radius: 16px;
}

.ic-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: #ffffff;
}

.ic-table thead th {
    background: green;
    color: #ffffff;
    text-align: left;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.ic-table tbody td {
    padding: 14px 16px;
    border-top: 1px solid #ececf3;
    font-size: 15px;
    color: #323246;
    vertical-align: top;
}

.ic-table tbody tr:nth-child(even) {
    background: #faf9ff;
}

.ic-empty-state {
    text-align: center;
    color: #6b7280;
    padding: 26px 16px !important;
}

@media (max-width: 992px) {
    .ic-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ic-card {
        padding: 22px;
        border-width: 8px;
        border-radius: 22px;
    }

    .ic-header h2 {
        font-size: 26px;
    }

    .ic-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ic-btn {
        width: 100%;
        min-width: 100%;
    }

    .ic-schedule-section h3 {
        font-size: 24px;
    }
}