/* Received Detail 样式 */

.received-detail-container {
    width: 100%;
    background-color: #FFFFFF;
    min-height: auto;
    height: fit-content;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.received-detail-container.dark-mode {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

/* 头部栏 */
.received-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
}

.received-detail-container.dark-mode .received-header {
    background-color: #0A0A0A;
    border-bottom-color: #333333;
}

.received-header-left,
.received-header-right {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.received-header-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.received-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.received-detail-container.dark-mode .received-title {
    color: #FFFFFF;
}

.received-back-icon {
    font-size: 20px;
    color: #000000;
    cursor: pointer;
}

.received-detail-container.dark-mode .received-back-icon {
    color: #FFFFFF;
}

/* 内容区域 */
.received-content {
    padding: 32px 16px 24px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.received-detail-container.dark-mode .received-content {
    background-color: #0A0A0A;
}

/* 图标容器 */
.received-icon-container {
    margin-bottom: 24px;
}

.received-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none;
    overflow: visible;
}

.received-currency-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.received-dollar-sign {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.received-network-logo {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.received-network-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.received-network-logo i {
    font-size: 14px;
    color: #627EEA;
}

/* 金额 */
.received-amount {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.2;
}

.received-detail-container.dark-mode .received-amount {
    color: #FFFFFF;
}

/* 日期时间 */
.received-datetime {
    font-size: 14px;
    color: #666666;
    margin-bottom: 32px;
    text-align: center;
}

.received-detail-container.dark-mode .received-datetime {
    color: #CCCCCC;
}

/* 交易详情卡片 */
.received-detail-card {
    width: 100%;
    background-color: #F8F9FA;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.received-detail-container.dark-mode .received-detail-card {
    background-color: #1A1A1A;
}

.received-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #E0E0E0;
}

.received-detail-container.dark-mode .received-detail-row {
    border-bottom-color: #333333;
}

.received-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.received-detail-row:first-child {
    padding-top: 0;
}

.received-detail-label {
    font-size: 15px;
    color: #666666;
    font-weight: 400;
    flex-shrink: 0;
    min-width: 120px;
}

.received-detail-container.dark-mode .received-detail-label {
    color: #CCCCCC;
}

.received-detail-value {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    text-align: right;
    flex: 1;
    margin-left: 16px;
    word-break: break-all;
}

.received-detail-container.dark-mode .received-detail-value {
    color: #FFFFFF;
}

.received-address {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.received-address:hover {
    opacity: 0.7;
}

.received-hash-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    margin-left: 16px;
    justify-content: flex-end;
}

.received-hash {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
    word-break: break-all;
    flex: 1;
    text-align: right;
}

.received-hash:hover {
    opacity: 0.7;
}

.received-copy-icon {
    font-size: 16px;
    color: #666666;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s;
}

.received-detail-container.dark-mode .received-copy-icon {
    color: #CCCCCC;
}

.received-copy-icon:hover {
    color: #2196F3;
}

/* 查看浏览器按钮 */
.received-explorer-button {
    width: 100%;
    padding: 16px;
    background-color: #E3F2FD;
    border: none;
    border-radius: 12px;
    color: #1976D2;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.received-detail-container.dark-mode .received-explorer-button {
    background-color: #1A1A1A;
    color: #4A9EFF;
}

.received-explorer-button:hover {
    background-color: #BBDEFB;
}

.received-detail-container.dark-mode .received-explorer-button:hover {
    background-color: #2A2A2A;
}

.received-explorer-button i {
    font-size: 14px;
}
