﻿@-ms-viewport {
    width: device-width;
}
html, body {
    font: normal 14px arial;
    margin: 0;
    padding: 0;
}

.header {
    border: none;
}
    .header a {
        border:none;
        display: inline-block;
        text-decoration: none;
        font: bold 16px verdana;
        color: black;
    }
    .header a img {
        border: 0;
    }
    .header a:hover {
        text-decoration:underline;
    }

.footer
{
    font:normal 10px verdana;
    text-align:center;
}

.InsertForm {
    font:normal 22px verdana;
    
}

    .InsertForm tr {
        margin: 25px 2px 25px 2px;
    }

    .InsertForm input {
        font: normal 18px verdana;
    }
    .InsertForm select {
        font: normal 18px verdana;
    }

/* Header styling */
.grid-header {
    background: linear-gradient(to bottom, #6fa088, #6fa088);
    color: white;
    margin: 5px 5px 5px 5px ;
    padding: 20px 20px 20px 20px ;
    border: none;
    font: 700 14px arial;
    letter-spacing: 0.5px;
}

.grid-header th {
    padding: 5px 5px 5px 5px;
}

/* Alternating row colors */
.grid-row {
    background-color: #ffffff;
    padding: 5px 5px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.grid-alt-row {
    background-color: #f8f9fa;
    padding: 5px 5px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

    /* Hover effect for rows */
    .grid-row:hover,
    .grid-alt-row:hover {
        background-color: #e3f2fd;
    }

/* Overall grid styling */
.styled-grid {
    border-collapse: collapse;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .styled-grid a {
        color: #176941;
        text-decoration:none;
    }

    .styled-grid a:hover {
        text-decoration:underline;
    }

    /* Cell styling */
    .styled-grid td {
        padding: 5px 5px;
        color: #333;
        font-size: 12px;
    }

.clearbox {
    border: solid 1px #176941;
    display: inline-block;
    background-color: white;
    margin: 10px 10px 10px 10px;
    padding: 15px 15px;
    
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    color: #176941;
    font: 500 16px arial;
}

table.clearbox th {
    font-weight: 900;
    text-align: left;
    border-bottom: 1px solid #176941;
}

    table.clearbox td {
        font-size:14px;  
    }

.graybox {
    border: solid 1px #176941;
    display: inline-block;
    background-color: #6fa088;
    margin: 10px 10px 10px 10px;
    padding: 15px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    color: white;
    font: 500 16px arial;
}

table.graybox th {
    font-weight: 900;
    text-align: left;
    border-bottom: 1px solid white;
}

table.graybox td {
    font-size: 14px;
}

.container {
    display: grid;
    grid-template-columns: 1fr auto; /* Flexible column then auto-sized column for GridView */
    gap: 10px; /* Optional: Add spacing between columns */
}

.right-gridview {
    grid-column: 2; /* Place the GridView in the second column */
    /* Further styling for the GridView if needed */
}

.Menu {
    border-top: 1px solid #176941;
    border-bottom: 1px solid #176941;
    width: 100%;
}

    .Menu a {
        text-decoration: none;
        font: 900 14px arial;
        color: #176941;
        width: 100%;
    }

    .Menu td:hover {
        background-color: #e3f2fd;
    }

.LoginMenu {
    text-align: right;
    vertical-align: bottom;
    padding-right:10px;
}

    .LoginMenu a {
        text-decoration: none;
        font: 900 14px arial;
        color: #176941;
        
    }

.SpacedTable
{
    font-weight:normal;
}

    .SpacedTable td {
        padding: 10px 10px 10px 10px;
    }

.PlayerList {    
    margin: 3px 50px 3px 5px;
    font: 900 16px arial
}