    /* Basic Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: Arial, sans-serif;
        background-color: #f4f4f4;
        padding: 20px;
      }

/* index.html  */
h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  /* Sidebar Styles */
/* Sidebar Styles */
 .custom-sidebar {
position: fixed;
top: 0;
left: -250px;
width: 250px;
height: 100%;
background-color: #111;
color: #fff;
padding: 10px; /* Increased padding for better spacing */
transition: 0.3s;
list-style: none; /* Hide list-style (bullet points) */
box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2); /* Added subtle shadow for better aesthetics */
}

.custom-sidebar.active {
left: 0;
}

/* .custom-sidebar .close-btn {
font-size: 30px;
color: white;
background: none;
border: none;
cursor: pointer;
position: absolute;
top: 10px;
right: 15px;
} */

.custom-sidebar-content {
margin-top: 40px;
}

.custom-sidebar-content h3 {
color: white;
margin-bottom: 20px;
font-size: 18px;
padding-bottom: 10px;
border-bottom: 2px solid #444; /* Added bottom border for a clean section separation */
}

.custom-sidebar-content ul {
margin-top: 20px; /* Increased top margin for more space */
padding-left: 0;
}

.custom-sidebar-content ul li {
color: white;
margin: 20px 0; /* Increased margin for more space between items */
font-size: 18px;
transition: 0.3s;
}

.custom-sidebar-content ul li i {
margin-right: 10px;
font-size: 20px;
}

/* Hover effect on list items */
.custom-sidebar-content ul li:hover {
color: #4CAF50; /* Change color to green on hover */
cursor: pointer;
}

.custom-sidebar-icons {
display: flex;
justify-content: space-between;
margin-top: 30px;
}

.custom-sidebar-icons i {
color: white;
font-size: 20px;
cursor: pointer;
}    

/* Main Area */

.custom-main-content{
    max-width:480px;
    margin:0 auto;
    padding:15px;
    background:#f4f6f9;
}

/* Form Card */

.mobile-report-form{
    background:#fff;
    border-radius:16px;
    padding:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

/* Heading */

.tab-section{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:1px solid #ececec;
}

.tab-section h3{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#222;
}

/* Labels */

.mobile-report-form label{
    display:block;
    font-size:15px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
    line-height:22px;
}

/* Inputs */

.mobile-report-form input[type=text],
.mobile-report-form input[type=time],
.mobile-report-form input[type=date],
.mobile-report-form input[type=number],
.mobile-report-form textarea{

    width:100%;
    height:48px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    padding:0 14px;
    font-size:15px;
    background:#fafafa;
    transition:.3s;
    box-sizing:border-box;
}

.mobile-report-form textarea{
    height:100px;
    padding:12px;
    resize:none;
}

.mobile-report-form input:focus,
.mobile-report-form textarea:focus{

    border-color:#0d6efd;
    background:#fff;
    outline:none;
    box-shadow:0 0 0 3px rgba(13,110,253,.12);

}

/* spacing */

.mobile-report-form>div{
    margin-bottom:18px;
}

/* Checkbox Section */

.checkbox-group{

    background:#f8f9fb;
    border:1px solid #ececec;
    border-radius:12px;
    padding:12px;
}

.checkbox-group label{

    margin-bottom:12px;
}

.checkbox-item{

    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:10px 5px;
    border-bottom:1px solid #ececec;
}

.checkbox-item:last-child{
    border-bottom:none;
}

.checkbox-item input{

    width:20px;
    height:20px;
    margin-top:2px;
    accent-color:#0d6efd;
   display: block;
    float: left;
}

.checkbox-item span{
    flex: 1;
    font-size: 16px;
    line-height: 22px;
    color: #444;
    position: relative;
    top: -5px;   /* -1px, -2px ya -3px apne hisab se adjust kar lo */
   display: block;
    margin-left: 35px;

}

/* Button */

.mobile-report-form button{

    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#0d6efd;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.mobile-report-form button:hover{

    background:#0957d3;

}

/* Mobile */

@media(max-width:480px){

    .custom-main-content{

        padding:12px;

    }

    .mobile-report-form{

        padding:15px;
        border-radius:14px;

    }

    .tab-section{

        flex-direction:column;
        align-items:flex-start;
    }

    .tab-section h3{

        font-size:20px;

    }

    .mobile-report-form input,
    .mobile-report-form textarea{

        font-size:14px;

    }

}

/* Desktop */

@media(min-width:768px){

    .custom-main-content{

        max-width:550px;

    }


  /* Entry Container */
  .entry-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  /* Header */
  .entry-header h1 {
    text-align: center;
    color: #333;
    font-size: 26px;
    margin-bottom: 20px;
  }

  /* Entry Info */
  .entry-info p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
  }

  /* Date Section */
  .entry-date p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
  }

  /* Input Fields */
  .entry-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .entry-form label {
    font-size: 16px;
    color: #333;
  }

  .entry-form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    width: 100%;
  }

  .entry-form input:focus {
    border-color: #4CAF50;
    outline: none;
  }

  /* Buttons */
  .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

  .submit-btn, .logout-btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 48%;
  }

  .submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    transition: background-color 0.3s;
  }

  .submit-btn:hover {
    background-color: #45a049;
  }

  .logout-btn {
    background-color: #f44336;
    color: white;
    border: none;
    transition: background-color 0.3s;
  }

  .logout-btn:hover {
    background-color: #e53935;
  }

  /* Error Message */
  .error-message {
    color: #f44336;
    font-size: 14px;
    margin-top: 10px;
  }
 
