/* تنظیمات برای صفحه حذف محتوا */
.full-width {
    grid-column: 1 / -1; /* کل عرض صفحه رو بگیره */
}

.content-description {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    color: #5f6368;
    line-height: 1.8;
}

.remove-content-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f1f3f4, #e8eaed);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-field label {
    font-size: 13px;
    font-weight: 500;
    color: #2c2f33;
    margin-bottom: 4px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #dadce0;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #4285f4;
    outline: none;
}

.form-field textarea {
    height: 120px;
    resize: vertical;
}

.form-field .char-count {
    font-size: 12px;
    color: #5f6368;
    position: absolute;
    bottom: 8px;
    left: 8px;
}

.form-field .error-message {
    font-size: 12px;
    color: #ea4335;
    margin-top: 4px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

.form-actions button {
    padding: 8px 20px;
    background: linear-gradient(90deg, #4285f4, #34a853);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.form-actions button:hover {
    transform: translateY(-2px);
}

.form-actions button:disabled {
    background: #a1c2fa;
    cursor: not-allowed;
    transform: none;
}
/* استایل باکس نکته */
.notice-box {
    margin: 16px 0;
    padding: 12px 16px;
    background-color: #fce4e4; /* قرمز روشن */
    border: 1px solid #ea4335; /* حاشیه قرمز */
    border-radius: 6px;
    font-size: 13px;
    color: #d32f2f; /* رنگ متن قرمز تیره */
    line-height: 1.6;
}

.notice-box strong {
    font-weight: 700;
    color: #ea4335; /* رنگ "نکته" کمی روشن‌تر */
}

.green-box {
    margin: 16px 0;
    padding: 12px 16px;
    background-color: #edfded; /* قرمز روشن */
    border: 1px solid #19e119; /* حاشیه قرمز */
    border-radius: 6px;
    font-size: 13px;
    color: #095109; /* رنگ متن قرمز تیره */
    line-height: 1.6;
}

.green-box strong {
    font-weight: 700;
    color: #119911; /* رنگ "نکته" کمی روشن‌تر */
}

.golden-notice {
    margin: 16px 0;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fff8e1, #ffe082); /* گرادیانت طلایی لوکس */
    border: 1px solid #ffb300; /* حاشیه طلایی پررنگ */
    border-radius: 8px;
    font-size: 14px;
    color: #3c2f00; /* قهوه‌ای تیره طلایی برای متن */
    line-height: 1.6;
    text-align: center;
    box-shadow: 0 3px 6px rgba(255, 179, 0, 0.2); /* سایه طلایی ملایم */
    position: relative;
}

.golden-notice::before {
    content: "✨"; /* یه ستاره برای لوکس بودن */
    font-size: 16px;
    position: absolute;
    top: 8px;
    right: 12px;
    color: #ffb300;
}

.golden-notice::after {
    content: "✨";
    font-size: 16px;
    position: absolute;
    bottom: 8px;
    left: 12px;
    color: #ffb300;
}