.pensioneret-tabel {
    margin-top: 18px;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
    opacity: 0.55;
    background: #f2f2f2;
    color: #888;
    font-style: italic;
}
.pensioneret-tabel th, .pensioneret-tabel td {
    border: 1px solid #ddd;
    padding: 6px 10px;
    text-align: left;
}
.pensioneret-row {
    background: #f7f7f7;
}
body {
      cursor: url('/billeder/Mouse.png'), auto;
      background: #f7f7fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
    }
      input, textarea, button, select, label, option {
    cursor: url('/billeder/Mouse.png') 0 0, auto !important;
}
       /* Container for at arrangere dropdowns i to kolonner */
        .dropdown-container {
            display: flex;
            justify-content: space-between;
        }

        /* Styling for venstre sektion (røde dropdowns) */
        .left-column {
            width: 45%; /* Gør sektionen til venstre til næsten halvdelen af bredden */
            display: flex;
            flex-direction: column;
            gap: 10px; /* Plads mellem dropdowns */
        }

        /* Styling for højre sektion (blå dropdowns) */
        .right-column {
            width: 45%; /* Gør sektionen til højre til næsten halvdelen af bredden */
            display: flex;
            flex-direction: column;
            gap: 10px; /* Plads mellem dropdowns */
        }
      
      	/* Styling for center (Vinder og set) */
      .center-column {
        	margin-left: 1px;
      }

        /* Blå farve for de første 2 dropdowns */
        #dropdown1, #dropdown2 {
            background-color: #007BFF; /* Blå farve */
            color: white;
        }

        /* Rød farve for de sidste 2 dropdowns */
        #dropdown3, #dropdown4 {
            background-color: #FF5733; /* Rød farve */
            color: white;
        }

        /* Generel dropdown styling (kan tilpasses) */
        select {
            padding: 10px;
            border-radius: 5px;
            font-size: 14px;
        }

        /* Styling for disabled options */
        option:disabled {
            background-color: #f2f2f2;
            color: gray;
        }
      /* Styling for vinder knappen */
        #colorButton {
            padding: 10px 10px;
            border: none;
            color: white;
            font-size: 24px;
           /* cursor: pointer; */
          	margin-right: 1px;
            margin-top: 20px;
          	width: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
      /* Styling for  score knappen */
        #ratingButton {
            padding: 10px 10px;
            border: none;
            color: white;
            font-size: 40px;
            /* cursor: pointer; */
            margin-top: 20px;
          	width: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* For at sikre knappen bliver lige så høj som dropdown sektionerne */
        .button-container {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%; /* Sørg for, at knappen strækker sig i højden */
        }

        /* Responsivt layout */
        @media (max-width: 768px) {
            .dropdown-container {
                flex-direction: column;
            }
            .left-column, .right-column {
                width: 100%;
            }
          
        }
      
       /* Blå farve for de første 2 dropdowns */
        #dropdown1, #dropdown2 {
            background-color: #007BFF; /* Blå farve */
            color: white;
        }

        /* Rød farve for de sidste 2 dropdowns */
        #dropdown3, #dropdown4 {
            background-color: #FF5733; /* Rød farve */
            color: white;
        }

        /* Generel dropdown styling (kan tilpasses) */
        select {
            padding: 10px;
            border-radius: 5px;
            font-size: 14px;
            margin-bottom: 10px;
        }

        /* Styling for disabled options */
        option:disabled {
            background-color: #f2f2f2;
            color: gray;
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            margin: 0;
            padding: 0;
        }
        .container2 {
            width: 80%;
            margin: auto;
            overflow: hidden;
        }
        .form-container {
            background-color: #fff;
            padding: 20px;
            margin-top: 50px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          	width: 50%
        }
      	.table-container {
        	background-color: #fff;
            padding: 20px;
            margin-top: 50px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      }
      .kamp-container {
        	background-color: #fff;
            padding: 20px;
            margin-top: 50px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      }
        input[type="text"] {
            width: 95%;
            padding: 10px;
            margin: 10px 0;
            border-radius: 4px;
            border: 1px solid #ccc;
        }
        input[type="submit"] {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            /* cursor: pointer; */
        }
        input[type="submit"]:hover {
            background-color: #45a049;
        }
      .container {
            display: flex; /* Gør containeren til en fleksibel boks */
            justify-content: space-between; /* Tilføj plads mellem elementerne */
            gap: 20px; /* Tilføj afstand mellem de to tabeller */
        }
        .table-container {
            overflow-x: auto;
        }
        .table-container.left {
            flex-basis: 40%;
            min-width: 0;
        }
        .table-container.right {
            flex-basis: 60%;
            min-width: 0;
        }
        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 8px; /* Lodret afstand mellem rækker */
        }
        th, td {
            padding: 8px;
            text-align: left;
            border: 1px solid #ddd;
        }

        tr.kamp-row {
            background: #fff;
            /* box-shadow tilføjes inline for farvet ramme */
        }
        h2 {
    margin-top: 40px;
    color: #0055a5;
    font-size: 1.6em;
    text-align: center;
}

ul {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0001;
    margin: 30px auto 20px auto;
    padding: 24px 32px;
    list-style: none;
    font-size: 1.1em;
}

ul li {
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

ul li:last-child {
    border-bottom: none;
}

form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0001;
    margin: 0 auto 30px auto;
    padding: 24px 32px;
    text-align: center;
}

label {
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

input[type="text"] {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1em;
    margin-bottom: 16px;
    width: 80%;
    box-sizing: border-box;
}

button[type="submit"] {
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 28px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:disabled {
    background: #bbb;
    cursor: not-allowed;
}

p {
    max-width: 400px;
    margin: 20px auto;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

p[color="green"], p[style*="color:green"] {
    background: #e8f5e9;
    color: #388e3c;
    border: 1px solid #c8e6c9;
}

p[color="red"], p[style*="color:red"] {
    background: #ffebee;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

p[color="gray"], p[style*="color:gray"] {
    background: #ececec;
    color: #666;
    border: 1px solid #ddd;
}

a, a:link, a:visited, a:hover, a:active {
    cursor: url('/billeder/Mouse.png') 0 0, auto !important;
    pointer-events: auto !important;
}
select, option, label, .player-dropdown {
    cursor: url('/billeder/Mouse.png') 0 0, auto !important;
}