        /* Reset styles */
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }

      body {
          font-family: Arial, sans-serif;
          color: black;
          line-height: 1.6;
          background-image: url("/images/dottet_bg.png");
      }


    

      header {
          background-color: #337da9;
          color: white;
          padding: 20px 10px;
          text-align: center;
      }

      header h1 {
          font-size: 2.5em;
          letter-spacing: 2px;
      }

      .section-title {
          color: #337da9;
          text-align: center;
          margin: 40px 0 20px;
          font-size: 1.8em;
          text-transform: uppercase;
      }


      .media-item {
          background-color: white;
          border: 2px solid #337da9;
          border-radius: 10px;
          padding: 15px;
          text-align: center;
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s, box-shadow 0.3s;
      }


      .card-header-other{

       
        padding: 0.75rem 1.25rem;
        margin-bottom: 0;
        background-color: #337da9;
        border-bottom: 1px solid rgba(0, 0, 0, 0.125);
        color: #fff;
        font-weight: bold;

      }

      .media-item:hover {
          transform: scale(1.05);
          box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
      }

      .media-item img, .media-item video {
          max-width: 100%;
          border-radius: 8px;
          margin-bottom: 10px;
      }

      .media-item a {
          display: inline-block;
          padding: 10px 15px;
          color: white;
          background-color: #337da9;
          width: 100%;
          text-decoration: none;
          border-radius: 5px;
          font-weight: bold;
          transition: background-color 0.3s;
      }

      .media-item a:hover {
          background-color: #fef607;
          color: black;
          text-decoration:none;
      }

      footer {
          position: fixed;
          bottom: 0px;
          background-color: #337da9;
          color: white;
          text-align: center;
          padding: 10px 0;
          width: 100%;
          border-top: 5px solid #fef607;
      }


      footer p {
          margin: 0;
          font-size: 0.9em;
      }


    header {
        position: fixed;
        top: 0px;
        background-color: #337da9;
        color: white;
        text-align: center;
        padding: 10px 0;
        width: 100%;
        z-index: 10;
        border-bottom: 5px solid #fef607;
    }

      .view-container{

        margin-top: 100px;
        margin-bottom: 40px;
      }

      .card-body{

        padding: 25px;

      }

      .media-edit{
        margin: 50px;
      }

      .publication{

        margin-top: 15px;
        margin-bottom: 35px;
       

      }


      /* زيادة المسافة في حالة الشاشات الصغيرة */
        @media (max-width: 768px) {
            .view-container {
                margin-top: 150px;  /* زيادة المسافة العلوية */
                margin-bottom: 50px; /* زيادة المسافة السفلية */
            }
        }


        .publication{

            margin-top: 15px;
            margin-bottom: 15px;
        
        }
        
        .media-item-other {
            display: flex ;
            justify-content: center;
            margin-bottom: 15px;
          }
          

