﻿*{
    box-sizing:border-box;

}
body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 10rem;
}
div.form-container {
    border-bottom: solid #4DB8FF;
    border-top: solid #4DB8FF;
    margin: 0 auto;
   /* margin-top: 10rem;
    margin-left: 50rem;*/
    align-items: center;
    background-color: white;
    width: 30rem;
}
.content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.logo {
    margin-left: 10px;
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

    .form-group label {
        margin-right: 10px;
        width: 100px; /* Fiksna širina za labelu */
        text-align: right;
    }

    .form-group input {
        width: 200px; /* Fiksna širina za tekst boksove */
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

.text-danger {
    margin-left: 10px;
    width: 150px; /* Fiksna širina za validacionu poruku */
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    color: red;
    display: inline-block;
}

button {
    width: 100px;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #4DB8FF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    justify-self: center;
}

    button:hover {
        background-color: #0056b3;
    }
.validation-summary-errors {
    position: absolute;
    margin-top:-1rem;
    list-style-type: none;
    padding-left: 0;
    width: 100%;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

    .user-table th, .user-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
    }

    .user-table th {
        background-color: #4DB8FF;
        color: white;
        font-weight: bold;
    }

    .user-table tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .user-table tr:hover {
        background-color: #ddd;
    }

    .user-table button {
        background-color: #4DB8FF;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
    }

        .user-table button:hover {
            background-color: #0056b3;
        }

