/* cmsms stylesheet: default_all modified: 08/25/25 12:48:58 */
#inner_mainpage img, aside img {
max-width: 100%;
height: auto;
}

#cookie_popup {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 300px;
    z-index: 99999999;
    box-sizing: border-box;
    padding: 10px;
    /* background-image: url("https://copperbeech.siteindev.co.uk/look/black_trans.png"); */
    color: #ffffff;
    background-color: #000000bf;
    font-size: 80%;
}

#cookie_popup a:link, #cookie_popup a:visited, #cookie_popup span {
color: #ffffff;
transition: color 0.4s;
cursor: pointer;
}

#cookie_popup a:hover, #cookie_popup span:hover {
color: #b4b387;
}

/* Base styling applied via row classes */
.formBlock {
max-width: 600px;
width: 100%;
margin: 0px auto;
}

.formRow, .formRowLong {
  margin-bottom: 1.5rem;
  padding: 0; /* In case you want to override globally later */
}

/* Label styling */
.formRow label,
.formRowLong label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

/* Input and textarea styling */
.formRow input[type="text"],
.formRow input[type="email"],
.formRow input[type="tel"],
.formRowLong textarea,
.formRow textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Textarea sizing */
.formRowLong textarea,
.formRow textarea {
  resize: vertical;
  min-height: 100px;
}

/* Button styling (modular, not tied to a form class) */
.blockButton {
  background-color: #555;
  color: #fff;
  padding: 0.9rem 1.2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
}

.blockButton:hover {
  background-color: #333;
}
