
html, body {
  margin: 0;
  height: 100%;
}
.btn-success {
  background: linear-gradient(135deg, #2a3f5f, #3f6b8a) !important;
  border: none !important;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-success:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(42, 63, 95, 0.3);
}
.appcontainer {
  display: flex;
  height: 100vh;
}

.appcontent {
  flex: 1;
  width: 100%;
  
  flex-direction: column;
}

.appyield {
   flex: 1;
  width: 100%;
  padding: 15px;
  overflow-y: auto; 
}

.menu-item:hover {
  background-color: rgb(110, 178, 241);
}

.nav-link {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

.menu-item {
  display: block;
  width: 100%;
  cursor: pointer;
}

.appHeader {
  height: 100px;
  flex-shrink: 0; 
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(135deg, #3f6b8a, #5a8fa3);
  color: white;
}
.appHeader div{
   color: #d6e6f2;
   font-size: 35px;
   margin-left: 20px; 
   margin-top: 0;
   margin-bottom: 0;
}

.contact{
  font-size: 25px!important;
  margin-right: 20px;
}

.appHeader .nav-link{
   color: #d6e6f2;
}


.appcontainer {
  display: flex;
  height: 100vh;
}

.appSlide{ 
  width: 250px;
  height: 130vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #2a3f5f, #3f6b8a);
  color: #d6e6f2;
  padding: 10px;    
  
}

.appSlide .nav-link {
  color: #d6e6f2;
}


.photo {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.photo-main{
  width: 100vh;
  height: auto;
  border-radius: 10px;
}


.login-container {
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}


.login-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 350px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  box-sizing: border-box;
}


.login-box input[type="email"],
.login-box input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}


.login-box input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: #4facfe;
  color: white;
  font-weight: bold;
  cursor: pointer;
  box-sizing: border-box;
}

.login-box input[type="submit"]:hover {
  background: #3a8dde;
}

.sign-container{
   width: 100%;
  display: flex;
  justify-content: center;
}

.sign-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 350px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.sign-box input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: #4facfe;
  color: white;
  font-weight: bold;
  cursor: pointer;
}


.sign-box input[type="submit"]:hover {
  background: #3a8dde;
}

.comunity-container{
   width: 100%;
  height: 60vh;
  display: flex;
  justify-content:space-between;
  padding-top: 20px;
}

.comunity-box{
   background: white;
  padding: 40px;
  border-radius: 20px;
  width: 350px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  box-sizing: border-box;
}

.form-bootstrap {
  background-color: #f8f9fa; /* igual que btn-light */
  border: 1px solid #dee2e6; /* border bootstrap */
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.form-bootstrap input {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
}

.form-bootstrap label {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #0d6efd; /* text-primary */
}

.pagination {
  display: flex;
  gap: 5px;
}

.pagination a,
.pagination span,
.pagination em {
  padding: 6px 10px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  text-decoration: none;
  color: #0d6efd;
  background-color: white;
}

/* 🔵 Página activa (el "1") */
.pagination .current,
.pagination em.current {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
  font-style: normal;
}