/* General Styles */

.cbutton {
    padding: 10px 20px;
    margin: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.cbutton:hover {
    background-color: #575757;
}

/* Modal Styles */
.modalc {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 620;
    left: 0;
    top: 0;
    
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 100px;
}

.modalc-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    width: 300px;
    text-align: center;
    border-radius: 8px;
}

.closec {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.closec:hover {
    color: black;
}
.modala {
  display: none;
  position: fixed; /* This is the key */
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.modala-content {
  font-size: 0.9rem; /* Adjusted from default ~1rem */
  background-color: #fff;
  margin: 10% auto; /* Vertical spacing */
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
  top: 0;
}
.modala-content h2 {
  font-size: 1.1rem; /* slightly smaller for title */
  margin-bottom: 10px;
}
.aclose {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}