/* Brand Colors */
.green {
    color: #7ed957;
}

.error {
    color: red;
    display: none;
}

/* Reset some default styles */
* {
    box-sizing: border-box;
    color: #5f6368;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}
h1 {
    font-size: 32px;
}
h2 {
    font-size: 18px;
}
h3 {
    margin: 0;
}
a {
    text-decoration: none;
    color: #38b6ff;
}
a:hover {
    color: #7ed957;
}
.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
}
.header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    font-size: 12px;
    color: #5f6368;
    background-color: white;
    transition: box-shadow 0.3s;
    z-index: 1000;
}
.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    font-size: 12px;
    color: #5f6368;
}
.content {
    flex: 1;
    margin-top: 100px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main {
    background: #fff;
    padding: 80px 0;
    width: 80%;
    text-align: center;
}
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: white;
    transition: left 0.3s;
    padding: 20px;
    z-index: 1000;
}
.side-menu a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 20px 0;
    font-weight: 600;
}
.side-menu.active {
    left: 0;
}
.header-left,
.footer-left {
    justify-content: flex-start;
}
.header-right,
.footer-right {
    justify-content: flex-end;
}

/* Form styling */
form {
    width: 100%;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

form input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="file"],
select,
option,
textarea {
    width: calc(100% - 20px);
    max-width: 600px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1em;
}

@media screen and (max-width: 600px) {
    form input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    input[type="file"],
    select,
    option,
    textarea {
        width: 100%;
    }
}

form button {
    background-color: #7ed957;
    color: white;
    padding: 24px;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #0056b3;
}

/* Button Styles */
.btn {
    display: inline-block;
    margin: 5px;
    padding: 10px;
    text-decoration: none;
    color: white;
    background-color: #38b6ff;
    border-radius: 5px;
    border: 0;
    text-align: center;
}

.btn:hover {
    background-color: #0056b3;
}

.btn.delete {
    background-color: #dc3545;
}

.btn.delete:hover {
    background-color: #c82333;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 8px 12px;
    border: 1px solid #ddd;
}

/* Make the table responsive */
.table-responsive {
    overflow-x: auto;
}

@media screen and (max-width: 600px) {
    table thead,
    th {
        display: none;
    }

    table,
    table tbody,
    table tr,
    table td {
        display: block;
        width: 100%;
    }

    table tr {
        margin-bottom: 15px;
    }

    table td {
        position: relative;
        box-sizing: border-box;
    }

    table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}

/* SVG Color */
.svgfill {
    fill: #eee;
}
