.doctor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.doctor-profile {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: flex !important;
    align-items: stretch !important;
    overflow: hidden;
    vertical-align: top;
    border-width: 1px 5px 5px 1px; border-color: #000000; border-style: solid;
}

.doctor-image-container {
    width: 25%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, #ec4040 1%, #ec4040 1%, #f3f0f0 1%);
    flex: 0 0 30%; /* تأخذ نسبة 30% من العرض ولا تتغير مع المحتوى */
    margin: -20px; /* يُطبق على كل الجوانب */
    margin-left: 0; /* أو القيمة المحددة للهامش الأيسر إذا كانت موجودة */

}

.doctor-image {
    flex-shrink: 0;
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 3px #fdfcff, 0 0 0 6px #ec4040;
}

.doctor-info-container {
    width: 70%;
    margin-right: 16px;

}


.doctor-info {
    z-index: 10;
    margin-right: 6%;
}



.doctor-info h3 {
    margin: 0 0 10px 0;
    color: #000;
}

.doctor-info p {
    margin: 0;
    color: #000;
}

.doctor-link {
    background-color: #1b0c54;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    float: left;
    transition: background-color 0.3s;
}

.doctor-link:hover {
    background-color: #ec4040;
    color: white;
}

@media (max-width: 768px) {
  .doctor-profile {
    flex-direction: column; /* تغيير الاتجاه إلى عمودي */
    padding: 20px; /* تعديل البادئة إذا لزم الأمر */
    
  }
  
  .doctor-image-container {
    width: 126%;
    margin-bottom: 25px;
    background-image: linear-gradient(to bottom, #ece9f7 97%, #13093a 97%, #ec4040 97%);
    margin-right: -13%;
    padding: 8%;

    
  }
  
  .doctor-info-container {
    width: 100%; /* يأخذ العرض الكامل */
  }
}
