.rn-webdav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.rn-webdav-error {
    background-color: #f44336;
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.rn-webdav-notice {
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 20px;
}

.rn-webdav-manager {
    margin-top: 20px;
}

.rn-webdav-disk {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 30px;
}

.rn-webdav-header {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    background: #f8f9fa;
}

.rn-webdav-header h3 {
    margin: 0;
    font-size: 18px;
}

.rn-webdav-toolbar {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rn-webdav-btn {
    padding: 8px 15px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.rn-webdav-btn:hover {
    background: #f8f9fa;
}

.rn-webdav-path {
    margin-left: auto;
    color: #6c757d;
}

.rn-webdav-files {
    padding: 15px;
}

.rn-webdav-file {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.rn-webdav-file:hover {
    background: #f8f9fa;
}

.rn-webdav-file-icon {
    margin-right: 10px;
    color: #6c757d;
}

.rn-webdav-file-name {
    flex-grow: 1;
}

.rn-webdav-file-size {
    margin-right: 20px;
    color: #6c757d;
}

.rn-webdav-file-date {
    color: #6c757d;
    min-width: 150px;
}

.rn-webdav-file-actions {
    display: none;
    gap: 10px;
}

.rn-webdav-file:hover .rn-webdav-file-actions {
    display: flex;
}

.rn-webdav-file-action {
    padding: 4px 8px;
    border: none;
    background: none;
    color: #6c757d;
    cursor: pointer;
}

.rn-webdav-file-action:hover {
    color: #0d6efd;
}

.rn-webdav-loading {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

.rn-webdav-error {
    padding: 15px;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 4px;
    color: #842029;
    margin-bottom: 20px;
}

.rn-webdav-progress {
    display: none;
    margin-top: 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.rn-webdav-progress-bar {
    height: 20px;
    background-color: #0d6efd;
    width: 0;
    transition: width 0.3s;
}

.rn-webdav-breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.rn-webdav-breadcrumb a {
    color: #0d6efd;
    text-decoration: none;
}

.rn-webdav-breadcrumb a:hover {
    text-decoration: underline;
}

.rn-webdav-breadcrumb span {
    color: #6c757d;
}

.rn-webdav-parent-dir a {
    color: #6c757d;
    text-decoration: none;
}

.rn-webdav-parent-dir a:hover {
    text-decoration: underline;
}

.rn-webdav-download,
.rn-webdav-delete {
    color: #007bff;
    text-decoration: none;
    margin-right: 10px;
}

.rn-webdav-download:hover,
.rn-webdav-delete:hover {
    text-decoration: underline;
}

.rn-webdav-delete {
    color: #dc3545;
}

.rn-webdav-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.rn-webdav-dialog-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}

.rn-webdav-dialog h3 {
    margin: 0 0 20px;
    font-size: 18px;
}

.rn-webdav-dialog input {
    width: 100%;
    padding: 8px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 20px;
}

.rn-webdav-dialog-buttons {
    display: flex;
    justify-content: flex-end;
}

.rn-webdav-dialog-buttons button {
    margin-left: 10px;
}

.rn-webdav-dialog-buttons .cancel {
    background: #6c757d;
}

.rn-webdav-retry {
    color: #007bff;
    text-decoration: none;
    margin-left: 10px;
}

.rn-webdav-retry:hover {
    text-decoration: underline;
} 