﻿/* admin style */

select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.api-table {
    margin-top: 100px;
    width: 100%;
}

    .api-table td {
        font-family: 'Open Sans';
        font-size: 16px;
        border-bottom: 1px solid #ccc;
        padding: 5px;
    }
    
    .api-table thead tr th {
        background-color: #eff4ff;
        font-family: 'Open Sans';
        font-size: 16px;
        padding: 5px;
    }
    
    .edit-link {
        color: green;
        border-bottom: 1px solid green;
    }

    .delete-link {
        color: deepskyblue;
        border-bottom: 1px solid deepskyblue;
    }

.back-link {
    font-family: 'Open Sans';
    font-size: 18px;
    margin: 0 15px;
    border-bottom: 1px solid #ccc;
}

    .flex-end {
        display: flex;
        display: -webkit-flex;
        justify-content: flex-end;
    }

.btn-admin_1 {
    background-color: #4D5D77;
    border-radius: 10px;
    color: #fff;
    font-family: 'Open Sans';
    font-size: 16px;
    padding: 10px 25px;
    font-weight: 700;
    cursor: pointer;
}

.api-form {
    margin-top: 100px;
    padding: 25px;
    box-shadow: 0 0 10px 10px #ccc;
}



.field-container label {
    display: block;
    font-family: 'Open Sans';
    font-size: 16px;
}

.text-field {
    border: 2px solid #848fa5;
    border-radius: 4px;
    text-indent: 20px;
    color: #333;
    font-size: 18px;
    font-family: 'Open Sans';
    box-sizing: border-box;
    width: 100%;
}

.checkbox-container span {
    font-family: 'Open Sans';
    margin-left: 5px;
    font-size: 18px;
}
.checkbox-container input {
    cursor: pointer;
}

nav {
    background-color: #ccc;
}
    nav a {
        font-family: 'Open Sans';
        font-size: 18px;
        margin: 0 25px;
        border-bottom: 1px solid #4D5D77;
    }

.color-green {
    color: lightgreen;
}

.color-silver {
    color: #ccc;
}