* {

  margin: 0px;
  padding:0px;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f7fa;
  margin: 0;
  padding: 0;
}

header {
  background-color: #cfa545;
  color: white;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

h1, h2 {
  text-align: center;
  padding-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

button {
  background-color: #cfa545;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #b28f3f;
}

.tcenter {
  text-align: right;
}
.clogin {
  display: inline-block;
}


main {
  padding-left: 50px;
  padding-right: 50px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 7px;
    display: block;
}

.inline-options {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.inline-options label {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.inline-checkbox {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.inline-checkbox input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
  width: auto;
}

.file-upload {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* === Responsive Sidebar & Overlay === */
@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #343a40;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    display: none;
  }

  .overlay.active {
    display: block;
  }

  .navbar-toggler {
    display: inline-block;
  }

  .content {
    margin-left: 0 !important;
    padding: 1rem;
  }
}

.navbar-toggler {
  border: none;
  background: transparent;
  font-size: 1.5rem;
}


@media (max-width: 767px) {
    
    h1, h2 {
        text-align: center;
        padding-bottom: 10px;
    }
    main {
        padding-left: 15px;
        padding-right: 15px;
    }
}
