/*
Plugin Name: OKIS Roles System
Description: Custom styles for the OKIS Roles System plugin.
Version: 1.0.0
*/


.okis-progress-bar-container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}
.okis-progress-bar {
    position: relative;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.okis-progress-bar-fill {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 50%;
    transform: translateY(-50%);
    background: #000;
    height: 30px;
    border-radius: 5px;
    border-left: 1px solid #000;
    transition: width 0.5s ease;
}
.okis-hint {
    padding: 10px 0;
    font-size: 14px;
}
.okis-hint span {
    font-weight: bold;
}

.okis-all-roles-info {
    margin: 30px 0 0 0;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.okis-all-roles-info h3,
.okis-all-roles-info h4,
.okis-all-roles-info p,
.okis-all-roles-info ul {
    margin: 0;
}

.okis-all-roles-info .button.button-primary {
    background-image: linear-gradient(to left top, rgb(28, 146, 210), rgb(242, 252, 254));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    padding: 5px;
    transition: background 0.3s ease, background-image 0.3 ease, color 0.3s ease;
}
.okis-all-roles-info .button.button-primary:hover {
    background-image: none;
    background: linear-gradient(to left top, rgb(28, 146, 210), rgb(242, 252, 254));
    -webkit-text-fill-color: inherit;
    border-radius: 5px;
    color: #000;
}

.okis-all-roles-sections {
    display: flex;
    flex-direction: column;
    gap: 15px;
}























