/* セキュアZIP変換システム カスタムCSS */

body {
    background-color: #f8f9fa;
}

.card {
    border: none;
    border-radius: 0.5rem;
}

.card.shadow {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1) !important;
}

/* ドラッグ＆ドロップエリア */
.drop-zone {
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: #0d6efd;
    background-color: #e8f0fe;
}

.drop-zone .bi {
    font-size: 3rem;
    color: #6c757d;
}

.drop-zone.dragover .bi {
    color: #0d6efd;
}

/* ファイルリスト */
.file-list .file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.file-list .file-item:last-child {
    border-bottom: none;
}

.file-item .file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-item .file-size {
    color: #6c757d;
    font-size: 0.875rem;
    margin-left: 1rem;
    white-space: nowrap;
}

/* テーブル */
.table th {
    white-space: nowrap;
    background-color: #f8f9fa;
}

/* パスワード表示エリア */
.password-display {
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 0.375rem;
    border: 1px solid #ffc107;
    text-align: center;
}
