/* Protected folder styling */
.folder-card.protected-folder {
    position: relative;
}

.folder-card.protected-folder::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--theme-color);
    opacity: 0.7;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><circle cx="12" cy="12" r="2"></circle><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><circle cx="12" cy="12" r="2"></circle><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>') no-repeat center;
    -webkit-mask-size: contain;
}

/* Default folder color - Yellow/Gold for all folders */
.folder-card .file-icon svg,
.file-list-item .file-icon svg {
    color: #fbbf24 !important; /* Yellow/Gold default */
    fill: #fbbf24 !important;
    width: 85px;
    height: 85px;
    margin-top: 15px;
}

/* Protected folder colors override default */
.folder-card.ripper-conversions .file-icon svg,
.file-list-item.ripper-conversions .file-icon svg {
    color: #dc2626 !important; /* Red for Ripper Conversions */
    fill: #dc2626 !important;
}

.folder-card.music-folder .file-icon svg,
.file-list-item.music-folder .file-icon svg {
    color: #22c55e !important; /* Green for Music */
    fill: #22c55e !important;
}

.folder-card.prior-sites-folder .file-icon svg,
.file-list-item.prior-sites-folder .file-icon svg {
    color: #00ffcc !important; /* Cyan for Prior Sites */
    fill: #00ffcc !important;
}

.folder-card.minecraft-servers-folder .file-icon svg,
.file-list-item.minecraft-servers-folder .file-icon svg {
    color: #4ade80 !important; /* Minecraft grass green */
    fill: #4ade80 !important;
}

.folder-card.prior-scripts-folder .file-icon svg,
.file-list-item.prior-scripts-folder .file-icon svg {
    color: #f97316 !important; /* Orange for Prior Scripts */
    fill: #f97316 !important;
}

.folder-card.prior-databases-folder .file-icon svg,
.file-list-item.prior-databases-folder .file-icon svg {
    color: #60a5fa !important; /* Blue for Prior Databases */
    fill: #60a5fa !important;
}

.file-list-item.protected-folder .file-list-name::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    background-color: var(--theme-color);
    opacity: 0.7;
    vertical-align: middle;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><circle cx="12" cy="12" r="2"></circle><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><circle cx="12" cy="12" r="2"></circle><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>') no-repeat center;
    -webkit-mask-size: contain;
}