diff --git a/css/style.css b/css/style.css index c7e61cc..010f2f0 100644 --- a/css/style.css +++ b/css/style.css @@ -209,4 +209,51 @@ footer{ } #video-container{ margin-bottom: 15px; -} \ No newline at end of file +} +.modal { + display: none; + position: fixed; + z-index: 1; + left: 0; + top: 0; + background-color: rgba(0, 0, 0, 0.6); /* Darker background */ +} + +.modal-content { + background-color: #fff; + padding: 20px; + border: 2px solid #ff0000; /* Red border */ + width: 40% !important; /* Fixed width for a smaller modal */ + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Add shadow for emphasis */ + border-radius: 8px; /* Rounded corners */ + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); /* Center the modal */ +} + +.modal-buttons { + text-align: center; /* Center buttons */ + margin-top: 20px; +} + +.modal-buttons button { + background-color: #ff0000; /* Red buttons */ + color: white; + border: none; + padding: 10px 20px; + margin: 5px; + cursor: pointer; + border-radius: 5px; + font-size: 16px; +} + +.modal-buttons button:hover { + background-color: #cc0000; /* Darker red on hover */ +} + +#alertMessage { + color: #ff0000; /* Red text */ + font-size: 18px; + text-align: center; +} diff --git a/index.html b/index.html index 535c7c8..ff93a76 100644 --- a/index.html +++ b/index.html @@ -12,6 +12,15 @@ +