@import url("fonts.css");
@import url("variables.css");
@import url("default.css");

button.disabled {
    pointer-events: none !important;
    opacity: .7;
    cursor: not-allowed !important;
}

.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

#main_content {
    margin-left: 60px;
    padding: 20px 40px;
    transition: all .5s ease;
}

#main_content.wrap {
    margin-left: 270px;
}

#main_content > .separator {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 24px 0;
}
#main_content > .header {
    width: 100%;
    margin: 10px auto;
}
#main_content > .header > .header-title {
    color: #111;
    font-size: 30px;
    font-weight: 600;
}
#main_content > .header > .header-text {
    color: #333;
    font-size: 16px;
    font-weight: 300;
}
.table-dropdown-btn-container {
    position: relative;
    display: inline-block;
}

.table-dropdown-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
.actions-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    z-index: 10;
    min-width: 140px;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.actions-dropdown button {
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
}

.actions-dropdown button:hover {
    background: #f5f5f5;
}




















