body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

#new-skills-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#new-skills-fields-container {
    margin-bottom: 10px; /* Add some margin to separate the fields from the button */
}



.navigation-buttons {
    background-color: #5f5f5f;
    padding: 10px;
}

.btn-purple {
    background-color: #8a2be2; /* Purple */
    border-color: #8a2be2; /* Purple */
    color: #fff; /* White text */
}

.toggleButton {
    width: 30px; /* Adjust as needed */
    height: 30px; /* Adjust as needed */
    background-color: #814299;
    border: none;
    border-radius: 50%; /* Makes it round */
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Adjust the size and color of the icon as needed */
.toggleButton i {
    font-size: 20px;
    color: white;
}

  
  /* Small screens (phones) */
  @media only screen and (max-width: 600px) {
    body {
        font-size:18px!important;
    }
    

    .container {
        max-width: 95%;
        margin: 20px auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }


    .logo-container {
        width:100%; 
        margin:0 auto;
    }
    
    h1 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .section {
        margin: 10px;
       
    }
    
    .section1 {
        margin: 10px;
       
    }
    
    label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }
    
    .tooltip {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }
    
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 200px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -100px;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }
    
    input[type="tel"],
    input[type="text"],
    input[type="email"],
    textarea {
        width: 90%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    /* Override padding for specific input types and textarea */
    input[type="tel"],
    input[type="email"],
    input[type="text"],
    textarea {
        padding: 10px !important; /* Adjust the padding value as needed */
    }
    
    
    .add-more,
    button[type="addmore"] {
        background-color: red;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .add-more:hover,
    button[type="addmore"]:hover {
        background-color: #0056b3;
    }
    
    .add-more {
        display: inline-block;
        margin-left: 10px;
    }
    
    .box {
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 5px;
        position: relative;
        background:#f5f5f5!important;
    }
    
    .remove-button {
        width: 30px; /* Adjust width as needed */
        height: 30px; /* Adjust height as needed */
        background-color: #ff6b6b;
        border: none;
        cursor: pointer;
        /* Add any other styles as needed */
    }
    
    .submit {
        background-color: orange;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    select {
        width: calc(100% - 22px); /* Adjusted width to accommodate padding and border */
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    /* Style for the input field */
    .container input[type="date"] {
        width: 90%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    
    /* Style for the date picker dropdown arrow */
    .container input[type="date"]::-webkit-calendar-picker-indicator {
        background-color: #fff; /* Customize the background color */
        padding: 5px;
        border-radius: 5px;
        cursor: pointer;
    }
    
    /* Additional styling for better visibility */
    .container input[type="date"] {
        background-color: #fff;
        color: #333;
    } 

  }
  
  /* Medium screens (tablets) */
  @media only screen and (min-width: 601px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
        margin: 20px auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
    
    h1 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .section {
        margin: 30px;
       
    }
    
    .section1 {
        margin: 30px;
       
    }
    
    label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }
    
    .tooltip {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }
    
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 200px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -100px;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }
    
    input[type="tel"],
    input[type="text"],
    input[type="email"],
    textarea {
        width: 90%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    /* Override padding for specific input types and textarea */
    input[type="tel"],
    input[type="email"],
    input[type="text"],
    textarea {
        padding: 10px !important; /* Adjust the padding value as needed */
    }
    
    
    .add-more,
    button[type="addmore"] {
        background-color: red;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .add-more:hover,
    button[type="addmore"]:hover {
        background-color: #0056b3;
    }
    
    .add-more {
        display: inline-block;
        margin-left: 10px;
    }
    
    .box {
        border: 1px solid #ccc;
        padding: 15px;
        border-radius: 5px;
        position: relative;
        background:#f5f5f5!important;
    }
    
    .remove-button {
        width: 30px; /* Adjust width as needed */
        height: 30px; /* Adjust height as needed */
        background-color: #ff6b6b;
        border: none;
        cursor: pointer;
        /* Add any other styles as needed */
    }
    
    
    .submit {
        background-color: orange;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    select {
        width: calc(100% - 22px); /* Adjusted width to accommodate padding and border */
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    /* Style for the input field */
    .container input[type="date"] {
        width: 90%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    
    /* Style for the date picker dropdown arrow */
    .container input[type="date"]::-webkit-calendar-picker-indicator {
        background-color: #fff; /* Customize the background color */
        padding: 5px;
        border-radius: 5px;
        cursor: pointer;
    }
    
    /* Additional styling for better visibility */
    .container input[type="date"] {
        background-color: #fff;
        color: #333;
    } 

  }
  
  /* Medium screens (tablets) */
  @media only screen and (min-width: 601px) and (max-width: 1024px) {
    body {
      font-size: 16px;
    }
  }
  
  /* Large screens (desktops) */
  @media only screen and (min-width: 1025px) {
   
    .container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
    
    h1 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .section {
        margin: 30px;
       
    }
    
    .section1 {
        margin: 30px;
       
    }
    
    label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }
    
    .tooltip {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }
    
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 200px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -100px;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }
    
    input[type="tel"],
    input[type="text"],
    input[type="email"],
    textarea {
        width: 90%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    /* Override padding for specific input types and textarea */
    input[type="tel"],
    input[type="email"],
    input[type="text"],
    textarea {
        padding: 10px !important; /* Adjust the padding value as needed */
    }
    
    
    .add-more,
    button[type="addmore"] {
        background-color: red;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .add-more:hover,
    button[type="addmore"]:hover {
        background-color: #0056b3;
    }
    
    .add-more {
        display: inline-block;
        margin-left: 10px;
    }
    
    .box {
        border: 1px solid #ccc;
        padding: 15px;
        border-radius: 5px;
        position: relative;
        background:#f5f5f5!important;
    }
    .remove-button {
        width: 30px; /* Adjust width as needed */
        height: 30px; /* Adjust height as needed */
        background-color: #ff6b6b;
        border: none;
        cursor: pointer;
        /* Add any other styles as needed */
    }
    
    .submit {
        background-color: orange;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    select {
        width: calc(100% - 22px); /* Adjusted width to accommodate padding and border */
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    /* Style for the input field */
    .container input[type="date"] {
        width: 90%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    
    /* Style for the date picker dropdown arrow */
    .container input[type="date"]::-webkit-calendar-picker-indicator {
        background-color: #fff; /* Customize the background color */
        padding: 5px;
        border-radius: 5px;
        cursor: pointer;
    }
    
    /* Additional styling for better visibility */
    .container input[type="date"] {
        background-color: #fff;
        color: #333;
    } 



  }

  /* Popup Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    max-width: 450px; /* Limiting the width to 450px */
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Buttons */
.modal-buttons {
    text-align: center;
}

/* Button Styles */
.btn {
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 3px;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

/* Button Hover Effects */
.btn:hover {
    opacity: 0.8;
}


/* Your existing CSS for the modal and skills section */

/* Additional styling for suggested skills */
.suggested-skill {
    margin-bottom: 10px;
}

.suggested-skill .add-btn {
    margin-left: 10px;
}
