@import "./tables.css";
@import "./buttons.css";
@import "./sidebar.css";
@import "./forms.css";
@import "./tabs.css";
@import "./sliders.css";
@import "./cards.css";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  list-style: none;
  text-decoration: none;
}
body {
  background-color: #f3f3f3;
}

h1 {
  font-size: 1.6rem;
  margin: 10px;
  max-width: 800px;
  color: darkcyan;
  font-weight: 900;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  word-break: normal;
}
h2 {
  font-size: 1.3rem;
  margin: 10px;
  max-width: 800px;
  color: darkcyan;
  font-weight: 900;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  word-break: normal;
}
.text-centered {
  text-align: center;
  margin: 10px auto;
}
.text-right {
  text-align: right;
}
main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  width: 100%;
}
.login-alert {
  /* display:flex; */
  /* height:30px;
  position:relative;
  width:100%; */
  margin-left: auto;
  margin-right: auto;
}
.login-alert p {
  color: gray;
  font-size: 0.7rem;
  text-align: right;
  margin-right: 10px;
}
.login-alert i {
  margin-left: 5px;
  margin-right: 5px;
}
.text-blue {
  color: blue;
}
.text-red {
  color: red;
}
.text-green {
  color: green;
}

.text-shadow {
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}
.wrapper-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.select-boxes {
  display: flex;
  flex-direction: row;
  background-color: rgb(246, 246, 246);
  padding: 6px 10px;
}
.select-boxes .select-checkbox {
  margin-right: 5px;
}
.select-boxes label {
  font-size: 0.8rem;
}
.container-select {
  padding: 5px;
}
.wrapper-contacts {
  display: flex;
  flex-direction: row;
}
.selectMoisDepenses,
.selectMoisAcomptes {
  width: 350px;
  background-color: #fff;
  color: darkcyan;
  font-size: 0.8rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.alert {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  padding-left: 10px;
  height: 30px;
  line-height: 30px;
  width: 100%;
  font-size: 0.8rem;
  opacity: 0.6;
}
.alert-warning {
  background-color: #f89a9a;
  color: rgb(255, 0, 0);
}
.alert-success {
  background-color: #e8fed1;
  color: rgb(55, 49, 49);
}
.alert-danger {
  background-color: rgb(255, 166, 0);
  color: rgb(55, 49, 49);
}
.btn-close-flashbag {
  padding: 6px;
  border-radius: 5px;
  background: none;
  cursor: pointer;
  border: none;
  font-weight: 900;
  margin-right: 5px;
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 1rem;
  }
  h2 {
    font-size: 0.8rem;
  }
}
