/* ------------------------------------------------------------- */
/* Main Empty State Container - Clean & Premium Layout           */
/* ------------------------------------------------------------- */
.--empty-attchment-area {
    direction: rtl;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 24px;
    /* Clean subtle solid border instead of the busy dashed one */
    border: 1px solid #f1f5f9; 
    position: relative;
    min-height: 380px;
    /* Soft, modern drop shadow for depth */
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.--remove-insert--post {
    display: flex;
    justify-content: center;
}

/* Subtle hover effect for the entire card */
.--empty-attchment-area:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

/* ------------------------------------------------------------- */
/* Icon Centerpiece (The Glassmorphism / Soft Circle Vibe)      */
/* ------------------------------------------------------------- */
.--empty-attchment-svg-v1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* Super soft and clean blue-tinted background */
    background: #f0f7ff; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Outer decorative ring - very soft and clean */
.--empty-attchment-svg-v1::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid #e0f2fe;
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* Interactive hover logic for the icon container */
.--empty-attchment-area:hover .--empty-attchment-svg-v1 {
    background: #e0f2fe;
    transform: scale(1.05);
}

.--empty-attchment-area:hover .--empty-attchment-svg-v1::after {
    inset: -10px;
    opacity: 1;
    border-color: #bae6fd;
}

/* The actual icon styling (Matches the blue theme in your image) */
.--empty-attchment-svg-v1 i,
.--empty-attchment-svg-v1 svg,
.--empty-attchment-svg-v1 img {
    font-size: 2.5rem;
    color: #2563eb; /* Vibrant modern blue */
    transition: transform 0.4s ease;
}

.--empty-attchment-area:hover .--empty-attchment-svg-v1 i,
.--empty-attchment-area:hover .--empty-attchment-svg-v1 svg {
    transform: scale(1.1);
}

/* ------------------------------------------------------------- */
/* Typography & Text Styling                                     */
/* ------------------------------------------------------------- */
/* Title (e.g., "Ù„Ø§ ÙŠÙˆØ¬Ø¯ Ù…Ù‚Ø§Ù„Ø§Øª ÙÙŠ Ù‡Ø°Ù‡ Ø§Ù„Ù…Ø¯ÙŠÙ†Ø©") */
.--empty-attchment-area h1 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a; /* Sharp, high-contrast slate color */
    margin: 0 0 32px 0;
    z-index: 2;
}

/* Description text underneath the title */
.--empty-attchment-description {
    max-width: 400px;
    z-index: 2;
}

.--empty-attchment-description p {
    font-size: 0.95rem;
    color: #64748b; /* Soft muted gray for readable hierarchy */
    line-height: 1.6;
    margin: 0;
}

/* ------------------------------------------------------------- */
/* Action Button (Matches the pill button in the image)          */
/* ------------------------------------------------------------- */
/* Targets any primary button or link acting as a button inside */
.--empty-attchment-area a, 
.--empty-attchment-area button:not(.--empty-attchment-svg-v1) {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 12px;
     /* Royal blue color matching the image */
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 9999px; /* Smooth pill shape */
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.--empty-attchment-area a:hover, 
.--empty-attchment-area button:not(.--empty-attchment-svg-v1):hover {
     /* Slightly darker blue on hover */
    transform: translateY(-1px);
}

/* Icon rotation inside the button if it contains an arrow */
.--empty-attchment-area a:hover i,
.--empty-attchment-area button:hover i {
    transform: translateX(-3px); /* Subtle nudge to indicate redirection */
}

.--empty-attchment-area a i, .--empty-attchment-area button i {
    transition: 0.2s all ease;
}

@media (max-width: 768px) {
    .--empty-attchment-area {
        padding: 45px 20px;
        min-height: 280px;
        border-radius: 20px;
    }

    .--empty-attchment-svg-v1 {
        width: 85px;
        height: 85px;
        margin-bottom: 20px;
    }

    .--empty-attchment-svg-v1 i,
    .--empty-attchment-svg-v1 svg,
    .--empty-attchment-svg-v1 img {
        font-size: 2.4rem;
    }

    .--empty-attchment-area h1 {
        font-size: 16px;
    }

    .--empty-attchment-description p {
        font-size: 0.85rem;
    }

    .--empty-attchment-area::before {
        width: 120px;
        height: 120px;
    }

    .--empty-attchment-area::after {
        width: 100px;
        height: 100px;
    }

    .--empty-attchment-description {
        padding: 8px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 580px) {
    *{}

.-dURLArea.--empty-attchment-actions a {
    font-size: 11px;
}

.--empty-attchment-area {
    padding: 30px;
}
}