:root {
  --primary-color: #774c29;
  --secondary-color: #fff;
  --gray: #e2e2e2;
  --text: #333;
  --bg-color: #f8f9fa;
  --red-color: #d9560c;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
}

.logo {
  width: 172px;
  height: 90px;
}
/*-------index--------*/

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.split-background {
  display: flex;
  height: 100vh;
}

.green-side {
  flex: 1;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-content {
  width: 80%;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: 10px; /* Rounded corners */
  padding: 20px;
}


.form-control {
  border-radius: none;
}

.form-control.bg::placeholder {
  color: var(--secondary-color);
}

.btn-primary {
  background-color: var( --primary-color);
  color: black;
}

.form-control.bg{
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--secondary-color) !important;
}

.login-content form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn.btn-primary {
  background-color: var(--primary-color);
  border: 1px var(--primary-color) !important;
  color: var(--bg-color) !important;
  width: 100px !important;
}

a.btn.btn-primary:hover{
  background-color: var(--bg-color);
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
}

button#signin-btn {
  background-color: var(--bg-color) !important;
  border: 1px solid var(--secondary-color) !important;
  color: var(--primary-color) !important;
  width: 150px !important;
}

button#signin-btn:hover{
  background-color: var(--primary-color) !important;
  border: 1px solid var(--bg-color);
  color: var(--bg-color) !important;
}


.details{
  width: 50%;
}

.doc-atext{
  text-decoration: none;
  color: var(--secondary-color);
}


/*---------Projects page--------*/
.wrapper {
  display: flex;
  height: 100vh;
}

#sidebar {
  min-width: 250px;
  max-width: 250px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transition: all 0.3s;
  padding-top: 45px;
  z-index: 2;
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
}

#sidebar ul {
  list-style: none;
  padding: 0;
}

#sidebar li {
  width: 100%;
  margin-bottom: 1px solid;
}

#sidebar a {
  padding: 20px 35px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background-color 0.3s, color 0.3s;
  text-align: left;
}

#sidebar a i{
    margin-right: 20px
}

#sidebar a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}


#sidebarCollapse {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  position: fixed;
  top: 6px;
  left: 6px;
  z-index: 3;
  border: none;
}

.sidebar-header.text-center {
  text-align: center;
}

#sidebar ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

/* content */

#content{
      padding: 5px;
      width: 100%;
  }

  .Project-header{
    padding-left: 50px;
  }

.custom-article {
  background-color: transparent;
  border: none;
  text-decoration: none !important;
}

.custom-article .font-style, .custom-article p {
  color: var(--text); /* Apply the --text variable for text color */
  text-decoration: none !important;
}

.custom-article a {
  text-decoration: none; /* Remove text underline */
}

a.page-link{
  text-decoration: none;
}
  .box{
    color: var(--text);
    background-color: var(--secondary-color);
    margin: 10px;
    font-size: larger;
    font-weight: 600;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 8px;
  }

  .box:hover{
    background-color: var(--primary-color);
    color: var(--secondary-color) !;
  }

 /*-----------signup--------------*/
 #body {
  background-color: var(--primary-color); /* Set the background color for #body */
}

#container {
  background: url('//images/logo.png') center center fixed no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: background 0.5s ease; /* Add a transition effect for the background image */
}

/* Add a class to control the fade-out effect */


form.signup-form{
  width: 50%;
}

body#body{
  background-color: var(--primary-color);
}

.btn.btn-primary{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color) !important;
  color: var(--bg-color) !important;
  width: 150px !important;
}

.btn-primary{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color) !important;
  color: var(--bg-color) !important;
  width: 150px !important;
}

button#add-btn.btn-primary{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color) !important;
  color: var(--bg-color) !important;
  width: 150px !important;
}

button#add-btn.btn-primary:hover {
  background-color: var(--bg-color) !important;
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.add-btn {
  float: right !important;
  margin-right: 0 !important;
}

.btn.btn-primary.two{
  background-color: #fff;
  color: #774c29 !important;
  border: 1px solid var(--primary-color) !important;
  width: 150px !important;
}

.btn.btn-primary.two:hover {
    background-color: #fff;
    color: #774c29 !important;
}

.row.px-5 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #add-btn {
        margin-left: auto;
    }


    .modal-checkbox {
        display: none;
    }

    .modal {
        display: none;
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
    }

    .modal:checked + .modal {
        display: block;
    }

    .modal-content {
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
    }

    .modal-title {
        margin: 0;
    }

    .btn-close {
        cursor: pointer;
        font-size: 24px;
    }

    .modal-footer {
        text-align: center;
    }

    .modal-footer button {
        margin-top: 10px;
    }

.modal-body .row{
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.form-label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

h1.modal-title{
  padding-left 40%;
  font-weight: bold;
}

input#taskTitle{
  width: 485px;
  height: 35px;
}

.form-container {
  text-align: center; /* Center the label and input horizontally */
}

.form-label {
  display: block; /* Display the label as a block element */
  margin-bottom: 10px; /* Add some space between the label and input */
}



select {
  width: 485px;
    height: 35px;
}


textarea#taskDescription{
    width: 485px;
}

textarea#taskDescription.form-control.descript{
    width: 100% !important;
}

div.modal-content.two{
   width: 560px !important;


input#dueDate {
    width: 220px;
    height: 35px;
    margin-left: 150px;
}


.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  display: flex;
  flex-direction: column;
  background: white;
  border-bottom: 2px solid var(--primary-color);
  padding: 10px;
  margin: 10px 0;
}

.custom-list li strong {
  font-weight: bold;
  margin-right: 5px;
}

.flex-list-item {
  display: flex;
  flex-direction: column;
  background: white;
  border-bottom: 2px solid var(--primary-color);
  padding: 10px;
  margin: 10px 0;
}

.flex-list-item strong {
  font-weight: bold;
  margin-right: 5px;
}

p.proj-info{
  color: var(--primary-color);
}

.list-group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-items {
  width: 250px;
}

div.table-head{
  margin-bottom: 20px;
}

.projects-tr:hover{
  background-color: var(--gray);
}

tr.projects-th{
  background-color: #fff;
  border-bottom: 7px solid var(--bg-color);
}

tr.projects-tr{
  background-color: #fff;
  border-bottom: 4px solid var(--bg-color);
}

td > a {
  color: var(--text); /* Change the text color */
  text-decoration: none;
}

a.projects-link {
    cursor: pointer;
  }

.list-group-item{
   border-left: none;
   border-right: none;
   padding: 19px;
}

    tr.projects-tr.completed {
    background-color: var(--gray);
}


     border: 1px dashed #de0611;
        }


input.upload-input {
    margin: 0;
    border: 1px  brown;  
    padding: 20px;  
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    box-sizing: border-box;  
} 

input.title-input {
    margin: 0;
    border: 2px solid #774c29;
    font-family: inherit;
    font-size: inherit;
    color: #774c29;
    width: 111%;
    line-height: inherit;
    background-color: white;
}
      

input.upload-input {
    margin: 0;
    background-color: white;
    border: 2px solid #774c29;
    border-radius: 5px;
    padding: 20px 298px 20px 20px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    box-sizing: border-box;
}

a.text-a{
    color: #fff !important;
    text-decoration: none !important;
}

.btn.btn-primary:hover {
    background-color: #fff;
    color: #774c29 !important;
}

tr.projects-tr:hover{
       background-color: antiquewhite !important;
       cursor: pointer !important;
}

.btn-lg {
  padding: 1rem 2rem; /* Adjust padding as needed */
}

