/* ── Copinion Skeleton Loader ── */
.skeleton{background:linear-gradient(90deg,var(--s1) 25%,var(--s2) 50%,var(--s1) 75%);background-size:200% 100%;animation:shimmer 1.5s infinite;border-radius:8px;}
@keyframes shimmer{to{background-position:-200% 0;}}

/* Generic shapes */
.skel-card{border-radius:12px;height:220px;}
.skel-line{height:14px;margin-bottom:10px;border-radius:4px;}
.skel-line.short{width:60%;}
.skel-line.medium{width:80%;}
.skel-line.long{width:95%;}
.skel-circle{width:40px;height:40px;border-radius:50%;}
.skel-stat{height:80px;border-radius:10px;}

/* Dashboard stat cards skeleton */
.skel-stats-row{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-bottom:24px;}
@media(max-width:900px){.skel-stats-row{grid-template-columns:repeat(3,1fr);}}
@media(max-width:600px){.skel-stats-row{grid-template-columns:repeat(2,1fr);}}

/* Project list skeleton */
.skel-project-list{display:flex;flex-direction:column;gap:12px;}
.skel-project-item{height:72px;border-radius:10px;}

/* Translate string list skeleton */
.skel-string-list{display:flex;flex-direction:column;gap:6px;padding:8px;}
.skel-string-item{height:42px;border-radius:6px;}

/* Profile stats skeleton */
.skel-profile-stats{display:grid;grid-template-columns:repeat(6,1fr);gap:12px;margin-bottom:20px;}
@media(max-width:900px){.skel-profile-stats{grid-template-columns:repeat(3,1fr);}}
@media(max-width:600px){.skel-profile-stats{grid-template-columns:repeat(2,1fr);}}

/* Manage tab content skeleton */
.skel-tab-content{display:flex;flex-direction:column;gap:16px;padding:20px 0;}
.skel-tab-row{height:56px;border-radius:8px;}
