/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling for body */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    /* background-color: #333; */
    /* color: #fff; */
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 24px;
}

/* Main content styling */
main {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* User info section */
#user-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.user-welcome h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.user-welcome p {
    color: #555;
}

.user-avatar img {
    max-width: 100px;
    border-radius: 50%;
    margin-top: 10px;
}

.sign-out {
    text-align: center;
    margin-top: 20px;
}

/* Responsive button styling */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #555;
}

.field select.login-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white;
    padding-right: 20px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */


body {
    font-family: Arial, sans-serif;
    background-color: #800000;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 32px;
    text-align: center;
}

.login-container {
    width: fit-content;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.table-container {
    width: fit-content;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

table {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid black;
    text-align: left;
    padding: 8px;
}
  
th {
background-color: #f2f2f2;
}

header {
    text-align: center;
    margin-bottom: 10px;
}

header h1 {
    color: #333;
    font-size: 24px;
}

main {
    margin-bottom: -20px;
}

main h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

.field {
    margin-bottom: 20px;
    text-decoration: none;
}

.field label {
    display: block;
    margin-bottom: 10px;
    margin-top:10px;
    font-weight: bold;
    color: #555;

}

.field input[type="email"],
.field input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

.forgot-password a {
    text-decoration: none;
    text-align:right;
    margin-top:10px;
    color: #707070;
}

.extended-input {
    width: 100%;  
    max-width: 600px; 
    padding: 8px 12px;
    font-size: 14px;   
    margin-bottom: 8px;  
    border: 1px solid #ccc; 
    border-radius: 4px; 
}

.forgot-password a:hover,
.forgot-password a:active,
.forgot-password a:focus {
    text-decoration: none;
    color: #707070;
}

.additional-links a {
    text-decoration: none;
    color: inherit;
}

.additional-links a:hover {
    text-decoration: underline;
    color: inherit;
}


.actions {
    text-align: center;
    margin-bottom: 10px;
}

.margin-top {
    margin-top: 10px;  /* Adjust this value to increase or decrease the spacing as per your design needs */
}

.login-button {
    background-color: #707070;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.login-button:hover {
    background-color: #5C5C5C;
    text-decoration: none;
}

.confirm-button {
    background-color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    text-align: center;
}

.additional-links {
    text-align: center;
    margin-top: 30px;
}

.additional-links a {
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
}

.additional-links a:hover {
    text-decoration: underline;
}

.login-button-container {
    margin-bottom: 20px; 
}

.center-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

.google-signin-button {
    background-color: #4285F4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    text-align: center; 
    display: inline-block;
    margin-top: 35px;
    margin-bottom: 35px;
    text-decoration: none;
}

.google-signin-button:hover {
    background-color: #eee;
    text-decoration: none;  
}


.signup-section {
  text-align: center;
  margin-top: 10px;
}

.signup-section p {
  font-size: 16px;
  color: #ffffff;
}

.signup-button {
    color: #707070;
    border: none;
    border-radius: 3px;
    font-size: 16px; 
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.event-feed {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 600px;
}

.event-item {
    border: 1px solid #ccc;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
}

.rsvp-feed {
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.rsvp-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #e1e1e1;
}
  .rsvp-name {
    flex-grow: 1;
  }
  .rsvp-buttons {
    display: flex;
    gap: 8px;
  }
  .button {
    text-decoration: none;
    padding: 8px 16px;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .yes {
    background-color: #28a745;
  }
  .no {
    background-color: #dc3545;
  }
