/**
 * @file
 * Styles for Starwood Restricted Access Modal
 */

/* Modal backdrop */
.starwood-modal-backdrop {
  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: 9999;
}

/* Modal container */
.starwood-modal-container {
  background: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Close button (X) */
.starwood-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
}

.starwood-modal-close:hover {
  color: #333;
}

/* Modal title */
.starwood-modal-title {
  margin: 0 0 20px 0;
  font-size: 24px;
  color: #333;
}

/* Modal content */
.starwood-modal-content {
  margin: 0 0 25px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* OK button */
.starwood-modal-ok {
  background: #e0e0e0;
  color: #000000;
  border: none;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease;
}

.starwood-modal-ok:hover {
  background: #d0d0d0;
}

.starwood-modal-ok:active {
  background: #c0c0c0;
}
