﻿@import "variables.css";

.button.width100 {
    width: 100px;
}

.button {
    color: white;
    font-size: calc(11pt + var(--font-offset));
    background: var(--marine);
    border: none;
    border-radius: 10px;
    width: auto;
    margin-top: 20px;
    padding: 7px 10px;
}

.buttonClose {
    color: white;
    font-size: calc(11pt + var(--font-offset));
    background: var(--seastone);
    border-radius: 10px;
    width: auto;
    margin-top: 20px;
    padding: 7px 10px;
}

.buttonAddNewOrg {
    background-color: var(--seastone);
    padding: 5px 10px;
    font-size: 10pt;
    color: var(--soft-white);
}

.buttonDelete {
    margin-left: 10px;
    background-color: var(--seastone);
    padding: 5px 10px;
    font-size: 10pt;
    color: var(--soft-white);
}

.buttonDeleteAdmin {
    margin-top: 0px;
    background-color: var(--marine);
    padding: 5px 10px;
    font-size: 10pt;
}

.buttonAddProvider {
    margin-left: 10px;
    background-color: var(--marine);
    padding: 5px 10px;
    font-size: 10pt;
}

.button:disabled,
.button:disabled:hover {
    font-style: italic;
    background: var(--marine);
    color: white;
    cursor: not-allowed;
    pointer-events: none; /* blocks click, hover, and any JS handlers */
    transition: none;
    opacity: 0.5;
}

.button.noTopMargin {
    margin-top: 0px !important;
}

.button:hover, .buttonClose:hover {
    font-weight: bold;
}

.button.rightAlign {
    float: right;
}

.button.wrapLong {
    margin-top: 0;
    width: 235px;
    padding: -10px;
    line-height: 20px;
    white-space: normal;
    word-wrap: break-word;
    height: 60px;
}

.button.dashboard, .button.dashboard:disabled {
    margin-top: 0;
    height: 22px;
    width: 75px;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
}

.buttonUpload {
    z-index: 10;
    color: var(--soft-white);
    background: var(--marine);
    border-radius: 10px;
    border: 1px solid var(--seastone);
    height: 28px;
    width: 75px;
    line-height: 26px;
}

    .buttonUpload:hover {
        font-weight: bold;
    }

    .buttonUpload.sameHeightAsBrowse {
        width: auto;
        height: 25px;
    }