body {
    font-family: sans-serif;
    margin: 40px;
    background-color: #f7f9fc;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}
table, th, td {
    border: 1px solid #ccc;
}
th, td {
    padding: 10px;
    text-align: left;
}
th {
    background-color: #e6effc;
}
form {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
}
input[type="text"], input[type="url"], select, input[type="file"], input[type="password"] {
    padding: 5px;
    margin-right: 10px;
}
input[type="text"], input[type="password"] {
	width:300px;
}
input[type="url"] {
	width:590px;
}

button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
.error {
    color: red;
}
.export-links {
    flex: 1;
    background: #eef;
    border: 1px solid #ccd;
    border-radius: 5px;
    padding: 15px;
    min-width: 280px;
}
.flex-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.action-buttons a {
    display: inline-block;
    margin: 2px 4px;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.2s;
}
.action-buttons a:hover {
    background-color: #0056b3;
}
.action-buttons a.edit {
    background-color: #17a2b8;
}
.action-buttons a.edit:hover {
    background-color: #117a8b;
}
.action-buttons a.delete {
    background-color: #dc3545;
}
.action-buttons a.delete:hover {
    background-color: #a71d2a;
}

input.websiteeingabe {
	padding: 5px;
	height: 20px;
	border: 1px gray solid;
	border-radius: 4px;
}
select.websiteeingabe {
	padding: 5px;
	height: 33px;
	border: 1px gray solid;
	border-radius: 4px;
}
span.bearbeitenabbrechen a {
	display: inline-block;
	margin: 2px 4px;
	padding: 5px 10px;
	border: none;
	border-radius: 4px;
	color: white;
	background-color: gray;
	text-decoration: none;
	font-size: 0.9em;
	transition: background-color 0.2s;
	height: 23px;
	min-width:90px;
}
button.websitebearbeiten {
	margin: 2px 4px; 
	padding: 2px 12px;
	border: none;
	border-radius: 4px;
	color: white;
	background-color: #007bff;
	text-decoration: none;
	font-size: 0.9em;
	transition: background-color 0.2s;
	height: 33px;
	min-width:80px;
	vertical-align:middle;
}

/* Titel */
.title {
	display: flex; 
	align-items: center;
	margin-bottom: 50px;
}
h1 a{
	text-decoration: none;
	color: #000;
}

/* Nav-Menu */
nav {
	position: absolute; 
	top: 0; 
	right: 0; 
    font-size: 0.9em;
    margin-left: 30px;
    color: #333;
}

nav strong {
    font-weight: bold;
}

nav a {
    color: #007bff;
    text-decoration: none;
    margin-left: 8px;
}

nav a:hover {
    text-decoration: underline;
}


/* Benutzerverwaltung */
button.delete {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 8px;
    border-radius: 4px;
    cursor: pointer;
}
button.delete:hover {
    background-color: #a71d2a;
}

/* Export / Import (Datensicherung) */
a.button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 6px 12px;
    margin: 4px 4px 0 0;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}
a.button:hover {
    background-color: #0056b3;
}

/* Footer */
.footer p {
	text-align:center;
	/* font-size: 70%; */
}
.footer p a {
	color: #000;
}
.footer p a.button {
	/* font-size: 125%; */
	color: #fff;
}


/* Login-Formular */
body.loginbody {
	height: 100%;
}
.login-box {
	padding-top: 100px;
	margin-left: auto;
	margin-right: auto;
	max-width: 350px;
	width: 350px;
}
.login-box h2 {	
	text-align:center;
}
form.loginform {
}

.loginfooter {
	width: 100%;
	max-width: 1150px;
	position: absolute; 
	bottom: 0; 
	vertical-align: bottom;
}
.loginfooter p {
	text-align: center;
	font-size: 70%;
}
.loginfooter p a {
	color: #000;
}
