html, body {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    background: #0d0d0d;
    color: #e8eaed;
    margin: 0;
    padding: 0;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "오류가 발생했습니다."
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Upload drop zone */
.upload-zone {
    border: 2px dashed #2a2a2a;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s;
    cursor: pointer;
}
.upload-zone:hover {
    border-color: #00bcd4;
}

/* Table row hover */
.mud-table-row:hover {
    background-color: rgba(0, 188, 212, 0.06) !important;
}

/* Ensure minimum button height for touch */
.mud-button-root {
    min-height: 44px;
}

