* {
  box-sizing: border-box
}

html {
  background: #f0f2f5; /* #585c68 */
  font-size: 14px;
  line-height: 22px;
  color: #555555;
}

.modal-container {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it appears above other elements */
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-title {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
}

.modal-actions {
    margin-top: 20px;
}


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

body {
  margin: 2.2rem
}

 .dropdowns {
  position: relative;
  display: inline-block;
}

.odropdown-button {
  background-color: #d7d7ff;
  color: black;
  font-weight: bold;
  padding: 30px 30px;
  border: 3px groove rgba(255, 255, 255);
  border-radius: 25px;
  cursor: pointer;
  font-size: 25px;
}

.dropdown-contents {
  display: none;
  position: fixed;
  left: 100%;
  top: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.dropdown-contents a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-contents a:hover {
  background-color: #f1f1f1;
}

.extra-button {
  background-color: #d7d7ff;
  color: black;
  font-weight: bold;
  padding: 30px 30px;
  border: 3px groove rgba(255, 255, 255);
  border-radius: 25px;
  cursor: pointer;
  font-size: 25px;
}

.odropdown-button:hover .dropdown-contents .extra-button:hover {
  display: block;
}

/* CSS for edit/delete icons */
.edit-icons {
  display: none; /* Initially hide the icons */
}

.education-section:hover,
.experience-section:hover {
  background-color: rgba(0, 0, 255, 0.1); /* Transparent blue color */
}

.education-section:hover .edit-icons,
.experience-section:hover .edit-icons {
  display: inline-block; /* Show the icons when hovering over the sections */
}
/*.nav {
    border-radius: 10px !important;
    padding: 0px 0 0px 0 !important;
    background-color: rgba(58, 134, 183, 0.08) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 15px groove rgba(255, 255, 255, 0.2);
}*/

 .sidebar-toggle {
        display: block;
        cursor: pointer;
        left:70%;
        top: 30%;
    }

.bar {
    width: 35px;
    height: 4px;
    background-color: #b3b3b3;
    margin: 5px 0;
    transition: 10.4s;
    color: white;
    border: 3px groove rgba(255, 255, 255, 0.2); /* changed from 15px */
    border-radius: 3px;
    box-shadow: 0 0 2px #3A86B7, 0 0 2px #3A86B7, 0 0 2px #3A86B7, 0 0 3px #3A86B7, 0 0 4px #3A86B7;
}

/* Styling for the hover effect */
.bar:hover {
    background-color: #555;
}

    .menu-list {
        display: none;
    }

    .sidebar {
        display: none;
    }

.sidebar-menu li {
    list-style-type: none;
}

.sidebar-menu li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #d3d3d3;
    background-color: rgba(1,23,83, 0.8);
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    text-shadow: 0 0 2px #878787, 0 0 2px #878787, 0 0 2px #878787, 0 0 2px #878787, 0 0 2px #878787;
}

.mb-7 {
      margin-bottom: 7px !important;
}

.screenshot-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    font-size: 2em;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Place the warning above other elements */
  }

  .watermark {
    position: fixed;
    font-size: 90px;
    top: 10%;
    transform-origin: 0 0;
    transform: rotate(55deg);
    pointer-events: none;
    opacity: 0.07; /* Adjust the opacity as needed */
    z-index: 2; /* Places the watermark behind other elements */
    /* Other styling properties */
  }

    .sticky-footer {
  margin: auto;
  text-align: center;
  padding: 20px 15px;
  background-color: #f8f9fa;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 1.1);
  height: 120px;
}

.butt {
  text-decoration: none;
  background-color: #040c3b;
  color: white;
  padding: 15px 25px;
  margin: 10px 5px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s, box-shadow 0.3s;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(58, 134, 183, 0.6);
}

.butt:hover {
  background-color: #063c72;
  box-shadow: 0 0 10px rgba(58, 134, 183, 1);
}

.butt i {
  margin-left: 10px;
}

/* Other styles for screen display */


.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #333;
  color: white;
  padding: 6px 2px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px

8px

16px

0px

rgba(0,0,0,0.2);
  z-index: 1;

position: absolute;
}

.dropdown-content

a {
  color: black;
  padding: 5px

5px;
  text-decoration: none;
  display: block;


}

.dropdown-content

a:hover {
  background-color: #ddd;
}

.dropbtn:hover .dropdown-content {
  display: block;

}

div#resume {
  font: 12px Helvetica, Avernir, sans-serif;
  line-height: 21px;
  color: #000;
  width: 794px;
  height: 1400px;
  padding: 0px;



}



div#resume h1 {
  margin: 0 0 16px 0;
  padding: 0 0 16px 0;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: -2px;
  border-bottom: 1px solid #999;
  line-height: 50px
}

div#resume h2 {
  font-size: 20px;
  margin: 0 0 6px 0;
  position: relative
}

div#resume h2 span {
  position: absolute;
  bottom: 0;
  right: 0;
  font-style: italic;
  font-family: Georgia, serif;
  font-size: 16px;
  color: #999;
  font-weight: normal
}

div#resume p {
  margin: 0 0 16px 0
}

div#resume a {
  color: #999;
  text-decoration: none;
  border-bottom: 1px dotted #999
}

div#resume a:hover {
  border-bottom-style: solid;
  color: #000
}

div#resume p.objective {
  font-family: Georgia, serif;
  font-style: italic;
  color: #666

}

div#resume dt {
  font-style: italic;
  font-weight: bold;
  font-size: 18px;
  text-align: right;
  padding: 0 26px 0 0;
  width: 150px;
  border-right: 1px solid #999
}

div#resume dl {
  display: table-row
}

div#resume dl dt,
div#resume dl dd {
  display: table-cell;
  padding-bottom: 20px
}

div#resume dl dd {
  width: 500px;
  padding-left: 26px
}

div#resume img {
  float: right;
  padding: 10px;
  background: #fff;
  margin: 0 30px;
  transform: rotate(-4deg);
  box-shadow: 0 0 4px rgba(0, 0, 0, .3);
  width: 30%;
  max-width: 220px
}

@media screen and (max-width:1100px) {
  div#resume h2 span {
    position: static;
    display: block;
    margin-top: 2px
  }
}

@media screen and (max-width:550px) {
  body {
    margin: 1rem
  }
  div#resume img {
    transform: rotate(0deg)
  }
}

@media screen and (max-width:400px) {
  div#resume dl dt {
    border-right: none;
    border-bottom: 1px solid #999
  }
  div#resume dl,
  div#resume dl dd,
  div#resume dl dt {
    display: block;
    padding-left: 0;
    margin-left: 0;
    padding-bottom: 0;
    text-align: left;
    width: 100%
  }
  div#resume dl dd {
    margin-top: 6px
  }
  div#resume h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 18px
  }
  div#resume dt {
    font-size: 20px
  }
  h1 {
    font-size: 36px;
    margin-right: 0;
    line-height: 0
  }
  div#resume img {
    margin: 0
  }
}

@media screen and (max-width:320px) {
  body {
    margin: 0
  }
  img {
    margin: 0;
    margin-bottom: -40px
  }
  div#resume {
    width: 320px;
    padding: 12px;
    overflow: hidden
  }
  p,
  li {
    margin-right: 20px
  }
}

.preview-data {
  background-color: #f2f2f2;
  border-radius: 2px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 1.1);
  padding: 20px;

  position: absolute;
  width: 810px;
  height: 1622px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;



}


.resume1 {
  width: 800px;
  height: auto;
  display: flex;
  margin: 50px auto;
}

 /* Define minimal styles for the download button */
    .download-button {
    background: none;
    border: none;
    color: white; /* Adjust the color as needed */
    font-size: 14px;
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
  }


  /* Define minimal styles for the icon inside the button */
  .download-button i {
    margin-right: 5px; /* Add spacing between the icon and text */
  }

/* Other styles for screen display */
@page {
  margin: 0; /* Remove the default margins */
}

@media print {
    /* Print-specific styles */
    #print-button {
        display: none; /* Hide the print button when printing */
    }

  [id^=roles_] {
    white-space: pre-line;
  }

   .sticky-footer {
    display:none;
    }

    .preview-data{
      box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 0;
      margin-top: 0;
      padding-bottom: 0;
    }

    .butt {
        display: none;
    }

    br{
    display: none;
    }

    .fuck {
        display: none;
    }

    .dropdown{
          display:none;
      }

     html {
           /* display: none;  Hide the entire resume section when printing */
            background-color: #f2f2f2;
            -webkit-print-color-adjust: exact;
            color-adjust: exact;

        }

}
/* Unified preview action bar style (aligned to template29/30/31 look) */
.sticky-footer {
  margin: auto !important;
  text-align: center !important;
  padding: 18px 15px !important;
  background: #f8f9fa !important;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.18) !important;
  min-height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.extra-button,
.butt,
.odropdown-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 22px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif !important;
  line-height: 1 !important;
}

.extra-button {
  background: #dbeafe !important;
  color: #1d4ed8 !important;
  box-shadow: none !important;
}

.butt {
  background: #0f172a !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.odropdown-button {
  background: #e2e8f0 !important;
  color: #0f172a !important;
  padding-inline: 16px !important;
}

.dropdown-contents {
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.dropdown-contents a {
  font-size: 14px !important;
}
