body {
  font-family: 'Montserrat', Tahoma, sans-serif;
  background: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background: #4caf50;
  color: white;
  text-align: center;
  padding: 20px;
}

main {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 15px;
}

h2 {
  font-family: 'Montserrat', Tahoma, sans-serif;
  border-bottom: 2px solid #4caf50;
  padding-bottom: 5px;
}

minip {
  color: #777;
  font-size: 14px;
}

.admin-panel, #editSection {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

input, textarea, button {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  background: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #45a049;
}

.members-list {
  display: grid;
  gap: 15px;
}

.member {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.member h3 {
  margin-top: 0;
}

.actions {
  margin-top: 10px;
}

.side-banner {
  position: fixed;    
  top: 100px;        
  right: 20px;       
  width: 285px;
  height: 600px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-size: 14px;
  z-index: 500; 
}

.side-banner h3 {
  margin-top: 0;
  color: #4caf50;      
}

.side-banner p {
  margin: 10px 0 0 0;
  line-height: 1.4;
}

.side-banner minip {
  margin: 10px 0 0 0;
  line-height: 1.4;
  font-size: 12px;
}

.actions button {
  width: auto;
  margin-right: 10px;
  background: #2196f3;
}

.actions button.delete {
  background: #f44336;
}

.hidden {
  display: none!important;
}

.hint {
  color: #777;
  font-size: 14px;
}

.info-btn {
  background: #2196f3;
  color: white;
  width: 5%;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
  margin: 0 auto;
}
.info-btn:hover {
  background: #1976d2;
}

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  padding: 20px;
  max-width: 400px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: 0.2s;
}
.close:hover {
  color: #000;
}
