/* 머니 페이지 스타일 */
.money-container {
    font-size: 15px;
    color: #e2e2e2;
}

/* 수익 테이블 영역 */
.profit-section {
    margin-bottom: 20px;
    position: relative;
}

.profit-title {
    font-size: 15px;
    font-weight: bold;
    margin-left: 5px;
    margin-bottom: 15px;
    color: #e2e2e2;
}

/* 수익 테이블 */
.profit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: #e2e2e2;
}

.profit-table th,
.profit-table td {
    border: 1px solid #343434;
    padding: 12px;
    vertical-align: middle;
    text-align: center;
}

.profit-table th {
    background-color: #2a2a2a;
    font-weight: bold;
    color: #e2e2e2;
    border-top-color: #717171;
}

.profit-table td {
    background-color: #1e1e1e;
}

/* 테이블 셀 정렬 */
.profit-table th:first-child,
.profit-table td:first-child {
    text-align: center !important;
}

.profit-table th:nth-child(2),
.profit-table td:nth-child(2),
.profit-table th:nth-child(3),
.profit-table td:nth-child(3) {
    text-align: right;
}

/* 수익 테이블 로그인 안내 오버레이 */
.profit-login-overlay {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 200px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 0;
    text-align: center;
}

.profit-login-content {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.profit-login-title {
    font-size: 15px;
    color: #e2e2e2;
    margin: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.profit-login-button {
    background-color: #2a2a2a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.profit-login-button:hover {
    background-color: #3a3a3a;
}

.profit-login-button .material-symbols-outlined {
    font-size: 15px;
}

/* 수익 테이블 블러 효과 */
.profit-section.blur-content .profit-table {
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
    opacity: 0.3;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .money-container {
        font-size: 15px;
    }
    
    .profit-table {
        font-size: 15px;
    }
    
    .profit-table th,
    .profit-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .profit-table th,
    .profit-table td {
        padding: 6px;
        font-size: 15px;
    }
    
    .profit-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
}
