
/* Use Ubuntu font across the entire website */
body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}


/* Centering the Login Section */
.login-form-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Card Styling */
.card {
	border: none; /* Removes the border */
	border-radius: 0.5rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover animation */
}

/* Hover Effect on Card */
.card:hover {
	transform: translateY(-5px); /* Slight lift on hover */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* Header Background */
.card-header {
	background-color: #007bff;
	color: white;
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
}

/* Input Fields */
.form-control {
	border: 2px solid #ced4da;
	border-radius: 0.375rem;
	height: 45px;
	font-size: 1rem;
}

/* Buttons */
.btn {
	font-size: 1rem;
	padding: 10px 20px;
	border-radius: 0.375rem;
}

/* Footer Link Styling */
.card-footer {
	text-align: center;
	font-size: 0.9rem;
}

.card-footer a {
	color: #007bff;
	text-decoration: none;
}

.card-footer a:hover {
	text-decoration: underline;
}

.add-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #007BFF;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	border-radius: 5px;
	border: none;
	transition: background-color 0.3s;
}

.add-btn i {
	margin-right: 8px;
}

.add-btn:hover {
	background-color: #0056b3;
}

/* Confirmation Modal Background */
.confirm-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

/* Modal Content Box */
.confirm-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Modal Text */
.confirm-modal-content h2 {
	background-color: #d4edda;
}

.confirm-modal-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

/* Buttons in the Modal */
.confirm-modal-actions {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
}

.confirm-modal-content button {
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
}

.confirm-modal-content button:hover {
	background-color: #0056b3;
}
.error-message {
    color: #721c24;
    background-color: #f8d7da;
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin-bottom: 15px;
}