    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f6f8;
    }

    .container {
      display: flex;
      max-width: 1000px;
      margin: 40px auto;
      background: white;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      border-width: 10px;
      /* border-width:color #2980b9; */
      overflow: hidden;
    }

    .sidebar {
      width: 30%;
      background-color: #0072e3;
      color: white;
      padding: 20px;
    }

    .sidebar img {
      border-radius: 50%;
      width: 100px;
      display: block;
      margin: 0 auto;
    }

    .sidebar h2, .sidebar p {
      text-align: center;
      margin: 10px 0;
    }

    .sidebar h3 {
      margin-top: 20px;
      border-bottom: 1px solid #7f8c8d;
    }

    .sidebar ul {
      list-style-type: none;
      padding: 0;
      margin-top: 10px;
    }

    .sidebar li {
      margin: 8px 0;
    }

    .main {
      width: 70%;
      padding: 30px;
      margin-top: -10px;
      background-color: #fff;
    }

    .main section {
      margin-bottom: 20px;
    }

    .main h2 {
      color: #2c3e50;
      border-bottom: 2px solid #3498db;
      padding-bottom: 5px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    th, td {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: center;
    }

    [contenteditable]:hover {
      background-color: #f2f9ff;
      outline: 1px dashed #3498db;
    }

    #saveBtn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 14px 28px;
      background-color: #3498db;
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: 0.3s ease;
      z-index: 999;
    }

    #saveBtn:hover {
      background-color: #2980b9;
    }

    .text-color{
      color: #2980b9;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .text-color:hover{
      color: red;
    }

    .image_user:hover{
      border-radius: 10px;
      box-shadow: #2c3e50;
    }

    .profile p{
      margin-top: -15px;
    }

    .contact ul{
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

      font-weight: -100;
      font-style: inherit;
    }

    .projects-a a{
      text-decoration: none;
      margin-left: 10px;
      font-style: italic;
    }

    .projects-a:hover{
      text-transform: capitalize;
    }