/* Reset some default browser styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #f4f4f4;
    color: #fff;
    padding: 10px 0;
}

nav {
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

article {
    margin-bottom: 20px;
}

h1, h2, h3 {
    color: #3498db;
}

.product-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ads {
    margin-bottom: 20px;
}

.result-wrapper {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.save-file-button {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}










/*************************************************
* Basic Footer Styles                            *
*************************************************/
footer {
  padding-bottom: 20px;
  border-top: 2px solid #E2E2E2;
}
footer .content {
  margin: 0 auto;
}
footer .content:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
footer .content .donate {
  width: 190px;
  float: left;
}
footer .content .donate img {
  width: 110px;
  margin: 0 15px 0 15px;
  cursor: pointer;
}
footer .content .links {
  float: left;
}
footer .content .links .service,
footer .content .links .business,
footer .content .links .social {
  padding: 0;
  margin: 0;
  display: inline-block;
}
footer .content .links .service li,
footer .content .links .business li,
footer .content .links .social li {
  margin: 0 15px;
}
footer .content .links .service li a,
footer .content .links .business li a,
footer .content .links .social li a {
  color: black;
  font-weight: 400;
  font-size: 15px;
  float: left;
}
footer .content .links .service li a.shop,
footer .content .links .business li a.shop,
footer .content .links .social li a.shop {
  padding-left: 20px;
  background-image: url(../assets/img/ui-cart.svg);
  background-size: 15px;
  background-position: left center;
  background-repeat: no-repeat;
}
footer .content .links .social li a span {
  font-family: smallpdfgui, "Source Sans Pro", Arial, Sans-Serif;
  padding-right: 5px;
}
footer .content .lang {
  width: 190px;
  position: relative;
}
footer .content .lang ul {


  border-radius: 5px;

  padding-left: 15px;
  box-sizing: border-box;
}
footer .content .lang li {
  display: none;
}
footer .content .lang li a {
  width: 100%;
  color: #778088;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  line-height: 30px;
}
footer .content .lang li a:hover {
  color: black;
}
footer .content .lang li.active,
footer .content .lang ul:hover li {
  display: block;
}
footer .content .lang ul:hover {
  line-height: 30px;
  position: absolute;
  bottom: -48px;
  right: 0px;
  left: 0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 7px 0 6px 15px;
  background-color: white;
  z-index: 999999; /*Bilal to fix the menu hide problem */
}
footer .content .footnote {
  float: left;
  color: #778088;
  font-size: 15px;
}
footer .content .footnote .copyright,
footer .content .footnote .text {
  padding: 0 15px;
}

.add-file .add-file-button .open-text {
  cursor: pointer;
  width: 164px;
  padding-left: 44px;
  fill: #ffffff; /*Bilal svg icon bouton upload */
}












/* Your existing styles */

nav {
    background-color: #3498db;
    color: #fff;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease; /* Smooth color transition */
}

nav a:hover {
    color: #ffcc00; /* Change color on hover */
}

/* Add the following styles for a dropdown menu */

nav ul ul {
    display: none;
    position: absolute;
    background-color: #3498db;
}

nav ul li:hover > ul {
    display: inherit;
}

nav ul ul li {
    width: 200px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul ul li {
    position: relative;
    top: -60px;
    left: 200px;
}
