@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: 'Times New Roman', Times, serif;
}

body {
  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;
}


 .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: pink; /* Transparent blue color */
}

.education-section:hover .edit-icons,
.experience-section:hover .edit-icons {
  display: inline-block; /* Show the icons when hovering over the sections */
}

    .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;
}

   .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;
}

.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 */
  }

.bold {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}


:root {
       --heading-color: #3F51B5; /* Default heading color */
}

.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;
}

.name {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Times New Roman', Times, serif;
  color: #000080;
}

.divider {
    border-top: 2px solid #ccc;
    margin: 10px 0;
}

.space {
    padding: 15px;
}

.round-icon::before{
    content: ' ';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color:black;
    display:inline-block;
    margin-right: 5px;
}

.semi-bold {
  font-weight: 600;
  font-size: 16px;
}

.resume {
  width: 794px;
  height: auto;
  display: flex;
  margin: 50px auto;
  margin-top: 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 1.1);
}

.resume .resume_a4 {
  width: 794px;
  height: 1122px;
  background: white;
  padding: 25px;
}

.resume .resume_left {
  width: 280px;
  background: var(--heading-color);
  margin-top: 0px;
}

.resume .resume_left .resume_profile {
  width: 100%;
  height: 280px;
}

.resume .resume_left .resume_profile img {
  width: 100%;
  height: 100%;
}

.resume .resume_left .resume_content {
  padding: 0 25px;
}

.resume .title {
  margin-bottom: 20px;
}

.resume .resume_left .bold {
  color: #fff;
}

.resume .resume_left .regular {
  color: #b1eaff;
}

.resume .resume_item {
  padding: 25px 0;
  border-bottom: 2px solid var(--heading-color);
}

.resume .resume_left .resume_item:last-child,
.resume .resume_right .resume_item:last-child {
  border-bottom: 0px;
}

.resume .resume_left ul li {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.resume .resume_left ul li:last-child {
  margin-bottom: 0;
}

.resume .resume_left ul li .icon {
  width: 35px;
  height: 35px;
  background: #fff;
  color: #0bb5f4;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 16px;
  position: relative;
}

.resume .icon i,
.resume .resume_right .resume_hobby ul li i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.resume .resume_left ul li .data {
  color: #b1eaff;
}

.resume .resume_left .resume_skills ul li {
  display: flex;
  margin-bottom: 10px;
  color: #b1eaff;
  justify-content: space-between;
  align-items: center;
}

.resume .resume_left .resume_skills ul li .skill_name {
  width: 25%;
}

.resume .resume_left .resume_skills ul li .skill_progress {
  width: 60%;
  margin: 0 5px;
  height: 5px;
  background: #009fd9;
  position: relative;
}

.resume .resume_left .resume_skills ul li .skill_per {
  width: 15%;
}

.resume .resume_left .resume_skills ul li .skill_progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
}

.resume .resume_left .resume_social .semi-bold {
  color: #fff;
  margin-bottom: 3px;
}

.resume .resume_right {
  width: 520px;
  background: #fff;
  padding: 25px;
}

.resume .resume_right .bold {
  color: var(--heading-color);
}

.resume .resume_right .resume_work ul,
.resume .resume_right .resume_education ul {
  padding-left: 40px;
  overflow: hidden;
}

.resume .resume_right ul li {
  position: relative;
}

.resume .resume_right ul li .date {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.resume .resume_right ul li .info {
  margin-bottom: 20px;
}

.resume .resume_right ul li:last-child .info {
  margin-bottom: 0;
}

.resume .resume_right .resume_work ul li:before,
.resume .resume_right .resume_education ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: -25px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 2px solid var(--heading-color);
}

.resume .resume_right .resume_work ul li:after,
.resume .resume_right .resume_education ul li:after {
  content: "";
  position: absolute;
  top: 14px;
  left: -21px;
  width: 2px;
  height: 115px;
  background: var(--heading-color);
}

.resume .resume_right .resume_hobby ul {
  display: flex;
  justify-content: space-between;
}

.resume .resume_right .resume_hobby ul li {
  width: 80px;
  height: 80px;
  border: 2px solid #0bb5f4;
  border-radius: 50%;
  position: relative;
  color: var(--heading-color);
}

.resume .resume_right .resume_hobby ul li i {
  font-size: 30px;
}

.resume .resume_right .resume_hobby ul li:before {
  content: "";
  position: absolute;
  top: 40px;
  right: -52px;
  width: 50px;
  height: 2px;
  background: var(--heading-color);
}

.resume .resume_right .resume_hobby ul li:last-child:before {
  display: none;
}

/* Other styles for screen display */


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

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

    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;
}

.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;

}

.nav {
  border-radius: 10px !important;
  padding: 3px 0 3px 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);
}

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

@page {
  margin: 0; /* Remove the default margins */
}
@media print {
    /* Print-specific styles */
    #print-button {
        display: none; /* Hide the print button when printing */
    }

    .sticky-footer {
    display:none;
    }

    .resume{
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.0);
    }

    .butt {
    display:none;
    }

    .fuck {
    display:none;
    }

    br{
    display: none;
    }

    .butts {
    display:none;
    }

    ui inverted menu .nav .mb-7{
        display: none;

    }

      .dropdown{
            display:none;
      }

    #headingColorInput{
        display:none;
    }

     body {
           /* display: none;  Hide the entire resume section when printing */
            background: white;
            -webkit-print-color-adjust: exact;
            color-adjust: exact;
        }

    /* Add any additional print-specific styling here */
    .resume .resume_left {
      width: 280px;
      background: var(--heading-color);
    }
}

/* 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;
}
