/* Add Category Styling */

.add-category-form
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-left: 30%;
}

.add-category-header
{
    color: var(--hrdc-theme-teal);
    font-size: 24px;
    font-family: 'Gotham Bold';
	text-align: center;
}

.category-name-input
{
    color: #ffffff;
    border-color: var(--hrdc-theme-teal);
    border-radius: 5px;
    font-family: 'Gotham Book';
    text-indent: 5px;
    font-size: 14px;
    color: var(--hrdc-theme-teal);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14) inset;
    padding: 0.7em 0.3em;
    display: grid;
}

.category-name-label
{
    color: var(--hrdc-theme-teal);
    font-size: 12px;
    font-family: 'Gotham Book';
    font-weight: bold;
    display: grid;
}

.category-color-input
{
    font-family: 'Gotham Book';
    font-size: 14px;
    color: var(--hrdc-theme-teal);
    background-color: #ffffff;
    border-color: var(--hrdc-theme-teal);
    border-radius: 5px;
    box-shadow: 2px 4px 4px 2px rgba(0, 0, 0, 0.2);
    width: 3em;
    height: 3em;
    display: grid;
}

.category-color-input:hover
{
    cursor: pointer;
}

.category-submit-button
{
    background-color: var(--hrdc-theme-teal);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    padding: 1em 1em;
    font-weight: bold;
    font-family: 'Gotham Book';
}

.category-submit-button:hover
{
    background-color: var(--hrdc-theme-green-yellow);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    padding: 1em 1em;
    font-weight: bold;
    font-family: 'Gotham Book';
    cursor: pointer;
}

button.category-danger-button
{
    background-color: #ffffff;
    border-style: none;
}

button.category-danger-button:hover
{
    cursor: pointer;
}

.close-icon
{
    width: 2rem;
}

.close-icon:active {
    filter: brightness(0) invert(1);
}

.image-radio input[type="radio"] {
    display: none;
}

.image-radio img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.image-radio input[type="radio"]:hover + img {
    transform: scale(1.1);
}

.image-radio input[type="radio"]:checked + img {
    outline: 2px solid var(--hrdc-theme-teal);
    border-radius: 5px;
}

.icon {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
}

.icon-container {
    grid-column: span 2; /* Make it take up both columns */
    display: flex;
    gap: 10px; /* Adjust spacing between icons */
    justify-content: left; /* Center the icons horizontally */
    flex-wrap: wrap; /* Allow wrapping if needed */
}

/* Edit Category Styling */

.edit-category-submit-button
{
    background-color: var(--hrdc-theme-teal);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    padding: 1em 1em;
    font-weight: bold;
    font-family: 'Gotham Book';
    margin: auto;
}

.edit-category-submit-button:hover
{
    background-color: var(--hrdc-theme-green-yellow);
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    padding: 1em 1em;
    font-weight: bold;
    font-family: 'Gotham Book';
    margin: auto;
}