/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

#external-link-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .el-popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
  }
  
  .el-close {
    position: absolute;
    right: 10px;
    top: -5px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #25539A;
    padding: 0;
}
  
.el-close:hover{
    background: transparent;
    color: #d43e21;
}
  .el-icon {
    margin-bottom: 15px;
  }
  
  .el-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #25539A;
  }
  
  .el-message {
    font-size: 18px;
    color: #111111;
    margin-bottom: 20px;
  }
  
  .el-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .el-buttons button {
    padding: 10px 30px;
    border: 2px solid #d43e21;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
  }
  #el-stay {
    background: #fff;
    color: #333;
  }
  #el-stay:hover{
    background: #d43e21;
    border-color: #d43e21;
    color: #fff;
  }
  
  #el-continue {
    background: #d43e21;
    color: white;
    border-color: #d43e21;
  }
  #el-continue:hover{
    background: #25539A;
    border-color: #25539A;
    color: #fff;
  }
  @media (max-width: 400px) {
    .el-buttons button {
        padding: 10px 15px;
    }
    .el-message {
        font-size: 16px;
    }
}