/* Specific styles for gdrive-setup.html */

.instruction {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
}

.success-text {
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

h1 {
    text-align: center;
}

h2 {
    margin-top: 30px;
}

/* Folder Tree */
.folder-tree {
    margin-top: 30px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.folder-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    flex-wrap: wrap;
}

.folder-item.root {
    background: #e3f2fd;
    border: 2px solid #2196F3;
    font-weight: bold;
    font-size: 18px;
}

.folder-item.child {
    background: #f5f5f5;
    border: 1px solid #ddd;
    margin-left: 30px;
}

.folder-item.file-item {
    background: #fff9e6;
    border: 1px solid #ffc107;
    transition: all 0.3s ease;
}

.folder-item.file-item:hover {
    background: #fff3cd;
    border-color: #ff9800;
    transform: translateX(5px);
}

.folder-icon {
    font-size: 24px;
    margin-right: 10px;
}

.folder-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 150px;
}

.clickable-folder {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-folder:hover {
    transform: translateX(5px);
    background: #e3f2fd !important;
}

.clickable-folder.root:hover {
    background: #bbdefb !important;
}

.indent {
    color: #999;
    margin-right: 10px;
    font-family: monospace;
}

/* Diagnostic Section */
.diagnostic-section {
    margin-top: 30px;
    border: 2px solid #ff9800;
    border-radius: 8px;
    padding: 20px;
    background: #fff3e0;
}

.diagnostic-section.error-type {
    border-color: #f44336;
    background: #ffebee;
}

.diagnostic-section.error-type h3 {
    color: #f44336;
}

.diagnostic-section h3 {
    color: #ff9800;
    margin-bottom: 15px;
}

.diagnostic-message {
    color: #e65100;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.8;
    white-space: pre-wrap;
    background: white;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ffcc80;
}

.diagnostic-section.error-type .diagnostic-message {
    color: #c62828;
    border-color: #ef9a9a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .folder-item.child {
        margin-left: 10px;
    }
}
