﻿/* Event Reminder Page*/

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-position: center center;
    background-attachment: fixed;
    height: 100vh;
    margin: 0;
   background-size: cover;
}

.page-container {
    /*padding-top: 50px;*/
    display: flex;
    gap: 40px; /* space between containers */
    width: 700px; /* or whatever width you want */
    flex: 1;
    margin: 0 auto;
    padding: 50px 0 20px;
}

.quick-dial-container,
.event-container {
    flex: 1; /* equal width */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    text-align: center;
}
.quick-dial-container {   
    order: 2; /* move this to the right */
}

.event-container {
    order: 1; /* move this to the left */
}

.quick-dial-container textarea {
    width: 100%; /* fill container width */
    height: 400px; /* adjust height as needed */
    padding: 8px;
    box-sizing: border-box; /* include padding inside width */
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: vertical; /* allow vertical resize only */
}


.call-btn {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 15px;
    margin-top: 30px;
}

    .call-btn:hover {
        background-color: #45a049; /* Darker green */
    }

input[type="text"] {
    border-radius: 4px;
    border: 1px solid #8a8886;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #323130;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.2s ease-in-out;
}

#lblMessage {
    display: block; /* Make it behave like a block element */
    margin-top: 12px; /* Space below the button */
    text-align: center;
    color: #333;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    width: 100%;
    background-color: #f8f9fa;
    border-top: 1px solid #ccc;
    padding: 8px 0;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1; /* lower than sidebar (999) */
    margin-left: 60px;
}
