/* EiWci Lookup 플러그인 스타일 */
.eiwci-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', sans-serif;
}

.eiwci-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 10px;
}

.eiwci-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.eiwci-calculator-box {
    background: linear-gradient(135deg, #f8f9fa, #e8f0fe);
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.08);
    border-left: 4px solid #4285f4;
}

.eiwci-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 20px;
}

.eiwci-date-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.eiwci-date-input {
    flex: 1;
    min-width: 200px;
}

.eiwci-container input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #e8f0fe;
    border-radius: 4px;
    font-size: 0.9rem;
}

.eiwci-dash {
    font-weight: bold;
    color: #4285f4;
}

.eiwci-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eiwci-primary-button {
    background-color: #4285f4;
    color: white;
}

.eiwci-secondary-button {
    background-color: #e8f0fe;
    color: #4285f4;
}

.eiwci-reset-button {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.eiwci-button:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.eiwci-error-message {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 5px;
}

.eiwci-notice {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

.eiwci-notice li {
    margin-bottom: 5px;
}

.eiwci-career-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.eiwci-career-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: white;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.eiwci-career-text {
    flex: 1;
}

.eiwci-action-buttons {
    display: flex;
    gap: 5px;
}

.eiwci-action-button {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.eiwci-edit-button {
    background-color: #e8f0fe;
    color: #4285f4;
}

.eiwci-delete-button {
    background-color: #ffebee;
    color: #d32f2f;
}

.eiwci-total-career {
    background-color: #4285f4;
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.eiwci-button-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

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

.eiwci-form-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 20px;
}

.eiwci-radio-group {
    display: flex;
    gap: 15px;
}

.eiwci-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
	gap: 5px;
}

.eiwci-results-container {
    margin-top: 20px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.eiwci-result-item {
    border-bottom: 1px solid #e8f0fe;
    padding: 15px 0;
}

.eiwci-result-item:last-child {
    border-bottom: none;
}

.eiwci-result-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: #4285f4;
}

.eiwci-result-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.eiwci-result-label {
    font-weight: 500;
    min-width: 100px;
}

.eiwci-result-value {
    flex: 1;
}

.eiwci-total-count {
    background-color: #e8f0fe;
    color: #4285f4;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.eiwci-loading {
    text-align: center;
    padding: 20px;
    display: none;
}

.eiwci-loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4285f4;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: eiwci-spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes eiwci-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.eiwci-source {
    font-size: 0.8rem;
    color: #666;
    margin-top: 30px;
    text-align: center;
}