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

.login, .my-account {
    max-width: 400px;
    margin: 80px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    input[type="text"], input[type="password"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 3px;
        box-sizing: border-box;
    }

    input[type="submit"] {
        width: 100%;
        padding: 10px;
        background-color: #28a745;
        border: none;
        border-radius: 3px;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
    }
}

.logout {
    max-width: 400px;
    margin: 80px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    input[type="submit"] {
        width: 100%;
        padding: 10px;
        background-color: #dc3545;
        border: none;
        border-radius: 3px;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
    }
}

.alert {
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    margin-bottom: 20px;
    border-radius: 5px;
    position: fixed;
    bottom: 0;
    right: 0;

}

.basic-button {
    display: block;
    background-color: rgb(104, 104, 255);
    padding: 8px 12px;
    color: #fff;
    box-sizing: border-box;
    width: 100%;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.basic-button:hover {
    background-color: rgb(64, 64, 162);
}

.danger-button {
    display: block;
    background-color: rgb(255, 104, 104);
    padding: 8px 12px;
    color: #fff;
    box-sizing: border-box;
    width: 100%;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.danger-button:hover {
    background-color: rgb(162, 64, 64);
}

.dashboard-layout {
    display: flex;

    nav {
        min-width: 200px;
        background-color: #333;
        color: #fff;
        height: 100vh;
        padding: 20px 0px;
        box-sizing: border-box;

        input[type="submit"] {
            width: 100%;
            padding: 8px;
            margin-top: 7px;
            margin-bottom: 7px;
            border: none;
            border-radius: 3px;
        }

        input[name="home"] {
            background-color: #ffffff00;
            font-size: large;
            color: #ffffff;
        }

        input[name="logout"] {
            background-color: #cd0000;
        }

        form {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            padding: 0 20px;
            justify-content: space-between;
            height: 100%;
        }

    }

    .dashboard-content {
        flex-grow: 1;
        padding: 20px;
        box-sizing: border-box;
        width: 100%;
    }
}

.pages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;

    .basic-button {
        width: auto;
    }
}

.pages-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pages-table th,
.pages-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.pages-table-head th {
    background-color: hsl(220, 19%, 18%);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.pages-table tr:hover td {
    background-color: #fafafa;
}

.pages-table-actions {
    white-space: nowrap;
}

/* Action links */
.pages-table-actions a {
    display: inline-block;
    margin-right: 8px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    background-color: #6c757d;
    transition: background-color 0.2s ease;
}

.pages-table-actions a:hover {
    opacity: 0.9;
}

/* Action variants */
.action-enable {
    background-color: #28a745 !important;
}

.action-disable {
    background-color: #ffc107 !important;
    color: #333;
}

.action-delete {
    background-color: #dc3545 !important;
}

.action-edit {
    background-color: #007bff !important;
}

.pageEditor-title {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 32px;
}

.pageEditor-route {
    display: flex;
    align-items: center;
    gap: 12px;

    input[type="text"] {
        flex: 1;
        padding: 8px;
        border: none;
        border-bottom: 1px solid #ccc;
        border-radius: 3px;
        box-sizing: border-box;
        font-size: 18px;
    }
}

.pageEditor-content {
    width: 100%;
    box-sizing: border-box;
    min-height: 400px;
    font-size: medium;
}

.simple-link {
    text-decoration: none;
    color: #007bff;
}

.simple-link:visited {
    text-decoration: none;
    color: #007bff;

}