/* Reset and Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.container {
    max-width: 850px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Header Section */
header {
    border-bottom: 2px solid #e4e4e4;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

/* User Info Section */
.user-info {
    gap: 20px;
    margin-bottom: 20px;
}

.user-info p {
    margin: 0;
    flex: 1;
}

.image{
    position: relative;
    border-radius: 10%;
    right: -220px;
    top: 30px;
}

/* Buttons */
.buttons_holder {
    border-radius: 10px;
    background-color: #f5f6f9;
    border: 5px solid rgb(255, 255, 255);
    outline: 1px solid #e1e1e1;
    position: relative;
    margin-bottom: 20px;
    height: 210px;
    width: 320px;
    top: -270px;
    right: -500px;
    padding: 10px;
    box-shadow: black 0px 0px 1px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

button.primary {
    background-color: #001155;
    color: white;
    height: 40px;
    border-radius: 2px;
}

button.secondary {
    background-color: #001155;
    color: white;
    height: 40px;
    border-radius: 2px;
    margin-left: 8px;
}
.edit-icon {
    font-size: 16px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    cursor: pointer;
}

.status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: #f5f6f9;
    border: 5px solid rgb(255, 255, 255);
    outline: 1px solid #e1e1e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    max-width: 740px;
    margin: auto;
}

.status-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 16px;
}

.green {
    background-color: #4CAF50;
}

.blue {
    background-color: #2196F3;
}

.line {
    flex: 1;
    height: 2px;
    background-color: #003366;
    margin: 0 10px;
}


/* Content Section */
.content {
    line-height: 1.6;
}

.content h3 {
    margin-top: 20px;
}

.content ul {
    margin-left: 20px;
    list-style-type: disc;
}


h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.question {
    margin-bottom: 20px;
}

.question p {
    margin: 0 0 10px;
    font-weight: bold;
}

label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
}

input[type="radio"] {
    display: none; /* Hide the native radio button */
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px; /* Make it look like a checkbox */
    display: inline-block;
    position: relative;
}

input[type="radio"]:checked + .custom-checkbox {
    background-color: #4caf50;
    border-color: #4caf50;
}

input[type="radio"]:checked + .custom-checkbox::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px; /* Small inner square to mimic checkmark */
}



textarea {
    width: 100%;
    height: 80px;
    margin-top: 10px;
}

.date-input {
    border: 5px solid rgb(255, 255, 255);
    outline: 1px solid #e1e1e1;
    background-color: #f5f6f9;
    border-radius: 5px;
}
  
  .calendar-icon {
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 16H5V9h14v11zm0-13H5V6h14v1z"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
  }

  #message{
    border-radius: 10px;
  }
  #submit{

  }
  