/* General Reset */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Arial', sans-serif;
}

body {
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   background: #f0f2f5;
   color: #333;
}

/* Container */
.container {
   width: 90%;
   max-width: 600px;
   margin: 20px auto;
   text-align: center;
}

/* Page Header */
.container h1 {
   font-size: 2.5rem;
   margin-bottom: 20px;
   color: #4a90e2;
}

/* Form Card */
.form-card {
   background: #ffffff;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
   margin-bottom: 30px;
   transition: transform 0.3s ease;
}

.form-card:hover {
   transform: translateY(-5px);
}

.form-card h2 {
   font-size: 1.8rem;
   color: #4a90e2;
   margin-bottom: 15px;
}

.form-group {
   display: flex;
   flex-direction: column;
   margin-bottom: 15px;
   text-align: left;
}

.form-group label {
   font-size: 1rem;
   color: #333;
   margin-bottom: 5px;
}

.form-group input {
   padding: 10px;
   font-size: 1rem;
   border: 1px solid #ddd;
   border-radius: 5px;
   transition: border-color 0.3s ease;
}

.form-group input:focus {
   border-color: #4a90e2;
   outline: none;
}

.btn {
   background-color: #4a90e2;
   color: #fff;
   font-size: 1rem;
   padding: 10px 20px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

.btn:hover {
   background-color: #357ABD;
}

/* Meetings List */
.meetings-list {
   background: #ffffff;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.meetings-list h2 {
   font-size: 1.8rem;
   color: #4a90e2;
   margin-bottom: 15px;
}

.meeting-card {
   background-color: #f9fafb;
   padding: 15px;
   border: 1px solid #ddd;
   border-radius: 8px;
   margin-bottom: 15px;
   box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.meeting-card p {
   margin: 0;
   font-size: 1rem;
}

.meeting-card .actions {
   display: flex;
   gap: 10px;
}

.meeting-card .edit,
.meeting-card .delete {
   font-size: 0.9rem;
   color: #fff;
   padding: 5px 10px;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

.meeting-card .edit {
   background-color: #4a90e2;
}

.meeting-card .delete {
   background-color: #e74c3c;
}

.meeting-card .edit:hover {
   background-color: #357ABD;
}

.meeting-card .delete:hover {
   background-color: #c0392b;
}


body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f3f4f6;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 15px;
    color: #555;
}

input, select, button {
    margin-top: 10px;
    padding: 8px;
    font-size: 16px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.button {
    text-decoration: none;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.button:hover {
    background-color: #45a049;
}

