@charset "utf-8";

/* 한중일 환율 위젯 */
.basic-exchange-rate {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #fff;
    font-family: 'Malgun Gothic', sans-serif;
    margin-bottom: 20px;
}

/* 위젯 헤더 */
.basic-exchange-rate .widget-header {
    background-color: #009688; /* 틸 그린 색상 */
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.basic-exchange-rate .widget-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
}

.basic-exchange-rate .widget-title i {
    margin-right: 8px;
    font-size: 16px;
}

/* 위젯 콘텐츠 */
.basic-exchange-rate .widget-content {
    padding: 0;
}

/* 테이블 스타일링 */
.basic-exchange-rate .exchange-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.basic-exchange-rate th, 
.basic-exchange-rate td {
    padding: 12px 10px;
    text-align: center;
    white-space: nowrap;
}

.basic-exchange-rate th {
    font-weight: 600;
    font-size: 13px;
    color: #555;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.basic-exchange-rate td {
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.basic-exchange-rate tr:last-child td {
    border-bottom: none;
}

/* 통화 스타일링 */
.basic-exchange-rate .currency {
    text-align: left;
    padding-left: 15px;
}

.basic-exchange-rate .currency .name {
    display: block;
    font-weight: 600;
}

.basic-exchange-rate .currency .code {
    font-size: 12px;
    color: #888;
}

.basic-exchange-rate .value {
    text-align: right;
    font-weight: 500;
}

/* 통화별 색상 */
.basic-exchange-rate .currency-krw .name {
    color: #333;
}

.basic-exchange-rate .currency-cny .name {
    color: #e91e63;
}

.basic-exchange-rate .currency-jpy .name {
    color: #2196f3;
}

/* 변동 스타일링 */
.basic-exchange-rate .change {
    font-size: 13px;
    text-align: right;
    padding-right: 15px;
    font-weight: 500;
}

.basic-exchange-rate .change.up {
    color: #f44336;
}

.basic-exchange-rate .change.down {
    color: #2196f3;
}

.basic-exchange-rate .change.none {
    color: #9e9e9e;
}

.basic-exchange-rate .change i {
    margin-right: 2px;
}

/* 업데이트 시간 */
.basic-exchange-rate .update-time {
    text-align: right;
    font-size: 12px;
    color: #888;
    padding: 8px 15px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

/* 반응형 조정 */
@media (max-width: 576px) {
    .basic-exchange-rate {
        max-width: 100%;
    }
}
