/* main.css */
body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #242525;
    color: #f5f5f5;
}

.container {
    margin-left: 260px; /* místo pro sidebar */
    padding: 20px;
}

/* Typografie */
h1, h2, h3 {
    color: #ffeb3b;
    margin-bottom: 10px;
}

p, label {
    color: #e0e0e0;
}

a {
    color: white;
    text-decoration: none;
}

/* Tabulky */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #2f2f2f;
    border-radius: 6px;
    overflow: hidden;
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
}

table thead {
    background: #ffeb3b;
    color: #000;
    font-weight: bold;
}

table tbody tr:nth-child(even) {
    background: #3a3a3a;
}

table tbody tr:hover {
    background: #454545;
}

/* Form fields */
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 16px;
    border: none;
    border-radius: 4px;
    background: #333;
    color: #fff;
}

input:focus, select:focus, textarea:focus {
    outline: 2px solid #ffeb3b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.btn.basic {
    background: #555;
    color: #fff;
}
.btn.basic:hover {
    background: #666;
}

.btn.confirm {
    background: #4caf50;
    color: #fff;
}
.btn.confirm:hover {
    background: #45a045;
}

.btn.neutral {
    background: #2196f3;
    color: #fff;
}
.btn.neutral:hover {
    background: #1976d2;
}

.btn.reject {
    background: #f44336;
    color: #fff;
}
.btn.reject:hover {
    background: #d32f2f;
}

.btn.cancel {
    background: #9e9e9e;
    color: #000;
}
.btn.cancel:hover {
    background: #7e7e7e;
}

/* Files */
	        .files {
            margin-top: 20px;
        }

        .folder-row {
            display: flex;
            align-items: center;
            padding: 5px;
            border-bottom: 1px solid #ccc;
            transition: background-color 0.3s ease;
        }



        .folder-icon {
            font-size: 18px;
            color: #ffa500; /* Barva ikony složky */
            margin-right: 10px;
        }
		.folder-iconR {
            font-size: 25px;
            color: #fa2121; /* Barva ikony složky */
            margin-right: 10px;
        }


        .folder-name {
            font-size: 16px;
            color: #333;
            flex-grow: 1;
        }

        .file-count {
            font-size: 14px;
            color: white;
        }
	
	  .button-upload {
            background-color: green;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin-right: 10px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s ease;
	    padding-left: 5px;
	    padding-top: 5px;
		margin-top: 20px;
		 margin-left: 50px;
		 font-family: Franklin Gothic Medium;
		 

        }
		
	        .card {
            background: #2f2f2f;
            border-radius: 6px;
            padding: 15px 20px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
            transition: background 0.2s;
        }
        .card:hover {
            background: #3a3a3a;
        }
        .card h2 {
            margin: 0;
            font-weight: bold;
            font-size: 1.3em;
        }
        .card .desc {
            font-style: italic;
            color: #ccc;
            margin-bottom: 10px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            margin: 4px 0;
        }
        .contact-item .material-icons {
            margin-right: 8px;
            color: #ffeb3b;
        }
        .emails {
            margin-top: 5px;
        }
        .emails div {
            display: flex;
            align-items: center;
        }