.text-trans {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    white-space: normal;
}

.card-footer {
    background: linear-gradient(135deg, #e0f7fa, #ffffff);
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    color: #333;
    transition: transform 0.3s ease;
}

.card-footer:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.post-title {
    font-size: 1.8em;
    color: #00796b;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.post-details,
.company-info {
    margin: 10px 0;
    font-size: 1.1em;
    line-height: 1.8;
    display: flex;
    align-items: center;
}

.post-details span,
.company-info span {
    color: #00796b;
    font-weight: bold;
    margin-left: 8px;
}

.company-info i {
    font-size: 1.2em;
    color: #00796b;
    margin-right: 10px;
}

.post-details i {
    font-size: 1.2em;
    color: #004d40;
    margin-right: 10px;
}

/* تنسيق الكارد */
.card-header {
    display: flex;
    align-items: center;
    /* لضبط محاذاة العناصر رأسياً */
    gap: 15px;
    /* مسافة بين الصورة والنص */
    padding: 15px;
}

/* تنسيق الصورة لتكون دائرية */
.image-container {
    width: 50px;
    /* عرض الصورة */
    height: 50px;
    /* ارتفاع الصورة */
    overflow: hidden;
    /* إخفاء أي جزء من الصورة يخرج عن الدائرة */
    border-radius: 50%;
    /* تحويل الصورة إلى دائرة */
    border: 2px solid #ddd;
    /* تحديد حافة حول الصورة (اختياري) */
}

.company-image {
    width: 100%;
    /* جعل الصورة تأخذ العرض الكامل */
    height: 100%;
    /* جعل الصورة تأخذ الارتفاع الكامل */
    object-fit: cover;
    /* ضمان تغطية الصورة للمساحة الدائرية دون تشويه */
}

/* تنسيق النص */
.title {
    font-size: 1.5em;
    color: #333;
    margin: 0;
}

/* إعدادات الكارد */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* رأس الكارد */
.card-header {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

.card-header h3 {
    font-size: 1.5em;
    color: #333;
}

/* محتوى الكارد */
.card-body {
    padding: 20px 0;
}

.file-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9;
}

.file-item:hover {
    background-color: #e9e9e9;
}

.file-icon {
    margin-right: 15px;
}

.file-icon img {
    width: 40px;
    height: 40px;
}

.file-details h3 {
    margin: 0;
    font-size: 1.1em;
}

.file-details p {
    margin: 5px 0;
    color: #666;
}

.no-attachments {
    color: #888;
    font-style: italic;
}

/* تفاصيل المنشور */
.card-footer {
    margin-top: 20px;
}

.card-footer h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}

.card-footer p {
    font-size: 1em;
    color: #555;
    margin: 5px 0;
}

.profile-name,
.profile-details {
    font-style: italic;
    color: #777;
}

.company-info {
    color: #555;
}


/* تنسيق التنبيهات */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.1em;
}

.alert-warning {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.input-field-search .custom-select-arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6 9L3 6L9 6L6 9Z' fill='%23667085'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 12px;
    padding-right: 2rem;

}

.full-width-div {
    background-color: #fafafa;
    border-bottom: 1px solid #e1e3e1;
    padding: 5px 0px;
    width: 100%;
}