/* ABOUTME: Stylesheet for DragonForce Affiliate Portal - AdminLTE dark theme matching Qilin panel */

/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Import Anonymous Pro font */
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap');

:root {
    --bg-dark: #343a40;
    --bg-darker: #1f2d3d;
    --bg-card: #343a40;
    --text-primary: #c2c7d0;
    --text-secondary: #adb5bd;
    --accent-primary: #28a745;
    --accent-hover: #218838;
    --border-color: #4b545c;
    --success-color: #28a745;
    --error-color: #dc3545;
    --sidebar-dark: #343a40;
    --sidebar-primary: #007bff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Anonymous Pro', 'Courier New', Courier, monospace;
    background-color: #1f2d3d;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Special font for headers/footer */
.main-footer {
    font-family: 'Anonymous Pro', monospace;
    text-transform: uppercase;
    font-weight: 700;
}

body.hold-transition {
    overflow-x: hidden; /* Prevent horizontal scroll */
    overflow-y: auto;   /* Allow vertical scroll */
}

body.dark-mode {
    background-color: #1f2d3d;
    color: #c2c7d0;
}

/* Background decorative elements like Qilin */
.bg4, .bg6 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.bg4 {
    background: radial-gradient(circle at 20% 80%, rgba(52, 58, 64, 0.4) 0%, transparent 50%);
}

.bg6 {
    background: radial-gradient(circle at 80% 20%, rgba(52, 58, 64, 0.3) 0%, transparent 50%);
}

/* Wrapper for AdminLTE structure */
.wrapper {
    min-height: 100vh;
    position: relative;
}

/* Main navbar */
.main-header {
    border-bottom: 1px solid #4b545c;
    padding: 0;
    background-color: #343a40;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar {
    display: flex;
    padding: 0.5rem 1rem;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #c2c7d0;
    padding: 0.5rem 1rem;
    display: block;
    text-decoration: none;
}

.nav-link:hover {
    color: #fff;
}

/* Sidebar */
.main-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background-color: #343a40;
    padding-top: 3.5rem;
    overflow-y: auto;
    z-index: 1020;
    box-shadow: 0 14px 28px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.22);
}

.sidebar {
    padding: 0;
}

.user-panel {
    padding: 1rem;
    border-bottom: 1px solid #4b545c;
}

.user-panel .info a {
    color: #c2c7d0;
    text-decoration: none;
    font-weight: 600;
}

/* Sidebar navigation */
.nav-sidebar {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-sidebar .nav-item {
    margin: 0;
}

.nav-sidebar .nav-link {
    color: #c2c7d0;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.nav-sidebar .nav-link:hover {
    background-color: #3f474e;
    color: #fff;
}

.nav-sidebar .nav-link.active {
    background-color: #007bff;
    color: #fff;
}

.nav-icon {
    margin-right: 0.5rem;
    width: 1.5rem;
}

/* Content wrapper */
.content-wrapper {
    margin-left: 250px;
    padding-top: 3.5rem;
    min-height: 100vh;
    background-color: #1f2d3d;
}

.content-header {
    padding: 1rem 1.5rem;
}

.content-header h1 {
    font-size: 1.75rem;
    margin: 0;
    color: #c2c7d0;
}

.content {
    padding: 0 1.5rem 1.5rem;
}

/* Card styling (AdminLTE) */
.card {
    background-color: #343a40;
    border: 1px solid #4b545c;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.card-body {
    padding: 1.25rem;
}

/* Form groups (AdminLTE style) */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #c2c7d0;
}

.form-group.required label:after {
    content: " *";
    color: #dc3545;
}

.control-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Form controls (Bootstrap/AdminLTE style) */
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #c2c7d0;
    background-color: #3d444b;
    border: 1px solid #6c757d;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #c2c7d0;
    background-color: #3d444b;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
}

.help-block {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6c757d;
}

/* Buttons (AdminLTE style) */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Form actions */
.form-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #4b545c;
}

/* Footer */
.main-footer {
    padding: 1rem;
    background-color: #343a40;
    border-top: 1px solid #4b545c;
    color: #6c757d;
    margin-left: 250px;
    margin-top: 2rem;
}

/* Success and Error messages (alert style) */
.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.success, .error {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
    border: 1px solid;
}

.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.success h2, .error h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success a, .error a {
    color: #0056b3;
    text-decoration: underline;
}

.success a:hover, .error a:hover {
    text-decoration: none;
}

.download-links {
    margin: 1.5rem 0;
}

.download-links p {
    margin: 0.75rem 0;
    font-size: 1.1rem;
}

.download-links a {
    font-weight: 600;
    margin-left: 0.5rem;
    color: #0056b3;
}

/* Bootstrap grid system */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.col-sm-4, .col-sm-6, .col-sm-12 {
    position: relative;
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Utility classes */
.d-flex {
    display: flex !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.m-0 {
    margin: 0 !important;
}

.text-center {
    text-align: center !important;
}

/* Additional AdminLTE dark mode refinements */
.sidebar-dark-primary {
    background-color: #343a40;
}

.elevation-4 {
    box-shadow: 0 14px 28px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.22) !important;
}

.navbar-dark {
    background-color: #343a40;
}

.navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.flex-column {
    flex-direction: column !important;
}

.d-block {
    display: block !important;
}

.container-fluid {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

/* Form field states */
.form-group.has-error .form-control {
    border-color: #dc3545;
}

.form-group.has-error .help-block {
    color: #dc3545;
}

.form-group.has-success .form-control {
    border-color: #28a745;
}

/* Alert heading */
.alert h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.alert p:last-child {
    margin-bottom: 0;
}

/* Improve button spacing */
.btn + .btn {
    margin-left: 0.5rem;
}

/* Navigation link paragraphs */
.nav-sidebar p {
    display: inline-block;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-sidebar {
        margin-left: -250px;
    }

    .content-wrapper,
    .main-footer {
        margin-left: 0;
    }

    .col-sm-4,
    .col-sm-6,
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Scrollbar styling for dark mode */
.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: #2c3136;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #4b545c;
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #5a6268;
}

/* Table styling (AdminLTE dark) */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #c2c7d0;
    border-collapse: collapse;
}

.table-dark {
    background-color: #343a40;
}

.table-dark th,
.table-dark td {
    padding: 0.75rem;
    border-top: 1px solid #4b545c;
}

.table-dark thead th {
    border-bottom: 2px solid #4b545c;
    font-weight: 600;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

.table code {
    background-color: #3d444b;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
}

/* Button sizing */
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Card stats */
.card-title {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: #adb5bd;
}

.card-stat {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #c2c7d0;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-state h3 {
    color: #adb5bd;
    margin-bottom: 1rem;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

.empty-state a {
    color: #007bff;
}

/* FAQ items */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #4b545c;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: #c2c7d0;
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin-bottom: 0.5rem;
}

.faq-item code {
    background-color: #3d444b;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: 'Consolas', 'Monaco', monospace;
    color: #28a745;
}

.faq-item ul {
    margin-left: 1.5rem;
}

/* Login page specific */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-box {
    width: 360px;
    margin: auto;
}

.login-logo {
    font-size: 2.1rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #c2c7d0;
}

.login-logo b {
    font-weight: 600;
}

.login-card-body {
    padding: 1.5rem;
}

.login-box-msg {
    margin: 0 0 1.5rem;
    padding: 0;
    text-align: center;
    color: #6c757d;
}

.input-group {
    display: flex;
    position: relative;
    width: 100%;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append {
    display: flex;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #c2c7d0;
    text-align: center;
    white-space: nowrap;
    background-color: #3d444b;
    border: 1px solid #6c757d;
    border-left: none;
    border-radius: 0.25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Text utilities */
.text-muted {
    color: #6c757d !important;
}

small {
    font-size: 0.875rem;
}

/* Badge styling */
.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

/* Platform icon styling */
.platform-icon {
    max-width: 100px;
    margin: 1rem auto;
    display: block;
}

/* Info button */
.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
}

/* Table borderless variant */
.table-borderless th,
.table-borderless td {
    border: 0;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.mytable th {
    width: 35%;
    color: #adb5bd;
    font-weight: 600;
}

.mytable td {
    color: #c2c7d0;
}

/* Card title in target view */
.card .header {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c2c7d0;
}

/* Activity feed styling */
.activity-feed {
    max-height: 450px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #4b545c;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 50px;
    flex-shrink: 0;
    font-size: 1.3rem;
    text-align: center;
    padding-top: 0.2rem;
}

.activity-content {
    flex-grow: 1;
}

.activity-description {
    color: #c2c7d0;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.activity-time {
    font-size: 0.85rem;
}

/* Text color utilities */
.text-success {
    color: #28a745 !important;
}

.text-info {
    color: #17a2b8 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-primary {
    color: #007bff !important;
}

/* Equal width columns for stat cards */
.col-sm {
    flex: 1 0 0%;
    max-width: 100%;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

/* Stats row specific styling */
.content .row:first-child {
    display: flex;
    align-items: stretch;
}

/* Ensure stat cards have equal height */
.content .row:first-child .col-sm .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content .row:first-child .col-sm .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

/* Stat card money formatting */
.card-stat-money {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #28a745;
    word-break: break-all;
}

/* Justify space between utility */
.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

/* Card header with button on right */
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #4b545c;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* Form sections styling */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #4b545c;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Disabled section styling */
.performance-tuning-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.performance-tuning-disabled .badge {
    background-color: #6c757d;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.85em;
    margin-left: 0.5rem;
}

/* Collapsible sections */
.collapsible-header {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.collapsible-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.collapsible-header .collapse-icon {
    float: right;
    transition: transform 0.3s;
}

.collapsible.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

.collapsible.collapsed .collapsible-content {
    display: none;
}

.collapsible-content {
    padding-top: 1rem;
}

/* Target paths table */
.target-path-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.target-path-input {
    flex: 1;
}

.target-path-flag {
    width: 100px;
    display: flex;
    align-items: center;
}

.target-path-flag label {
    margin: 0;
    cursor: pointer;
}

.target-path-delete {
    width: 80px;
}

.target-path-delete .btn {
    width: 100%;
}

/* Alert boxes */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.alert-warning {
    background-color: #856404;
    border: 1px solid #ffc107;
    color: #fff;
}

.alert-info {
    background-color: #0c5460;
    border: 1px solid #17a2b8;
    color: #fff;
}

.alert i {
    margin-right: 8px;
}

/* Form control file styling */
.form-control-file {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    background-color: transparent;
    border: none;
}

/* Help block muted text */
.help-block.text-muted {
    color: #6c757d;
}

/* Section spacing */
.form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #4b545c;
}

/* Chat container */
.chat-container {
    display: flex;
    flex-direction: column;
    height: 350px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
    background-color: #1a1a1a;
    border: 1px solid #4b545c;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.chat-message {
    margin-bottom: 0.35rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    max-width: 85%;
    background-color: #2d3748;
}

.chat-message-header {
    display: inline;
    font-size: 0.75em;
}

.chat-sender {
    font-weight: 600;
}

.chat-timestamp {
    color: #6c757d;
    font-size: 0.85em;
    margin-left: 0.5rem;
}

.chat-message-body {
    color: #c2c7d0;
    line-height: 1.25;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.9em;
    margin-top: 0.1rem;
}

/* Different styles for different senders */
.chat-operator {
    border-left: 2px solid #17a2b8;
    margin-right: auto;
}

.chat-support {
    border-left: 2px solid #28a745;
    margin-right: auto;
}

.chat-system {
    border-left: 2px solid #ffc107;
    background-color: rgba(255, 193, 7, 0.1);
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
    text-align: center;
}

/* Chat input */
.chat-input-container {
    margin-top: auto;
}

.chat-form {
    margin: 0;
}

.chat-form .input-group {
    margin: 0;
}

/* Scroll chat to bottom */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #4b545c;
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #6c757d;
}

/* Sortable table headers */
th.sortable {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

th.sortable:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

th.sortable .sort-icon {
    margin-left: 0.5rem;
    font-size: 0.8em;
    opacity: 0.5;
}

th.sortable:hover .sort-icon {
    opacity: 1;
}

/* Target/Victim Chat Styling - Red Theme */
.card-victim {
    border-color: #8b0000;
    border-width: 2px;
}

.card-header-victim {
    border-bottom-color: #8b0000;
}

.card-header-victim h3 {
    color: #dc3545;
}

.chat-victim-container {
    background-color: rgba(139, 0, 0, 0.1);
}

/* Target/victim message styling - right aligned with red theme */
.chat-target {
    border-left: none;
    border-right: 2px solid #dc3545;
    margin-left: auto;
    margin-right: 0;
    background-color: rgba(220, 53, 69, 0.15);
}

/* Operator messages in victim chat stay left */
.chat-victim-container .chat-operator {
    border-left: 2px solid #17a2b8;
    margin-right: auto;
    margin-left: 0;
}

/* Tox ID display styling */
.tox-id {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85em;
    color: #adb5bd;
    background-color: #3d444b;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    cursor: help;
}
