@charset "UTF-8";

/*!
modalres.css - MiguelC
michaeljosph21@gmail.com
Copyright (c) 2025 Miguel
*/

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f0f0f0;
    }

    /* Modal overlay */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    /* Modal content */
    .modal-content {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      max-width: 600px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }

    /* Close button */
    .modal-close {
      position: absolute;
      top: 10px;
      right: 12px;
      background: #ff5a5a;
      color: white;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-size: 18px;
      cursor: pointer;
    }

    /* Responsive behavior */
    @media screen and (max-width: 768px) {
      .modal-content {
        width: 95vw;
        height: 95vh;
      }
    }