/* ============================================
   RESET & CẤU HÌNH CƠ BẢN
   ============================================ */

#cool-symbol-editor-container {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, "Trebuchet MS",
        "Heiti TC", "微軟正黑體", "Droid Fallback Sans", sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #111;
    background-color: #fff;

    min-height: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}


/* ============================================
   LAYOUT
   ============================================ */

#cool-symbol-editor-container .flex-row::before,
#cool-symbol-editor-container .flex-row::after {
    content: " ";
    display: table;
}

#cool-symbol-editor-container .flex-row::after {
    clear: both;
}

#cool-symbol-editor-container .flex-col {
    width: 100%;
}

/* ============================================
   FORM CONTROLS
   ============================================ */

#cool-symbol-editor-container textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    overflow: auto;
}

#cool-symbol-editor-container .input-control {
    display: block;
    width: 100%;
    padding: 8px 15px;
    margin: 4px 0 -3px;
    font-size: 100%;
    border: 2.5px solid #f6f6f6;
    border-radius: 5px;
    box-sizing: border-box;
    resize: none;

    appearance: none;
    transition: border-color 0.3s ease;
}

#cool-symbol-editor-container .input-control:hover {
    border-color: #4353ff;
    box-shadow: 0 0 0 4px rgba(0, 124, 186, 0.1);
}

#cool-symbol-editor-container .input-control:focus {
    outline: none;
    border-color: #054fcb;
    box-shadow: 0 0 0 4px rgba(0, 124, 186, 0.1);
    z-index: 3;
}

#cool-symbol-editor-container .input-control::placeholder {
    font-style: italic;
    color: #aaa;
}

#cool-symbol-editor-container .input-control[readonly] {
    background-color: #eee;
}

#cool-symbol-editor-container .input-control[disabled] {
    cursor: not-allowed;
}

#cool-symbol-editor-container .input-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

/* ============================================
   INPUT GROUP
   ============================================ */

#cool-symbol-editor-container .input-group {
    display: flex;
    align-items: center;
    width: 100%;
}

#cool-symbol-editor-container .input-group .input-control {
    flex: 1;
    margin: 6px;
    border-radius: 6px;
}

#cool-symbol-editor-container .input-addon {
    display: flex;
}


#cool-symbol-editor-container .input-addon>.btn-primary {
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   BUTTONS
   ============================================ */

#cool-symbol-editor-container .btn-primary {
    display: inline-block;
    cursor: pointer;
    background-image: none;
    user-select: none;
    text-align: center;
    white-space: nowrap;

    color: #fff;
    background: #3c4148;
    border: 1px solid #3c4149;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#cool-symbol-editor-container .btn-primary:hover {
    background: #0000ff;
    border-color: #0000ff;
    text-decoration: none;
}

#cool-symbol-editor-container .btn-primary:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

#cool-symbol-editor-container .btn-primary[disabled] {
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none;
}



#cool-symbol-editor-container .acnm-copy-text {
    font-size: 14px !important;
}

/* ============================================
   CARD
   ============================================ */

#cool-symbol-editor-container .card {
    background: #fff;
    margin-bottom: 15px;
    width: 100%;
}

#cool-symbol-editor-container .card-body {
    padding: 0px;
}

/* ============================================
   HEADER & STICKY
   ============================================ */

#cool-symbol-editor-container .tools-inner {
    background-color: #f9f9f9;
    border-radius: 5px;
}

#cool-symbol-editor-container .is-sticky {
    position: fixed;
    top: 39px;
    padding: 5px 0;
    background: #fff;
    z-index: 2;
}

/* ============================================
   SYMBOLS & UTILITIES
   ============================================ */

#cool-symbol-editor-container .symbol-btn,
#cool-symbol-editor-container .symbol-btn-clan {
    display: inline-block;
    padding: 6px 12px;
    line-height: 1.42857143;
    cursor: pointer;
    background-image: none;
    user-select: none;
    white-space: nowrap;

    color: #333;
    background-color: #fff;

    font-size: 13px !important;
    min-width: 38px;
    margin: 0 8px 8px 0;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #f9f9f9;
}

#cool-symbol-editor-container .symbol-btn:hover,
#cool-symbol-editor-container .symbol-btn-clan:hover {
    text-decoration: none;
    background-color: #e6e6e6;
}

#cool-symbol-editor-container .symbol-btn:active,
#cool-symbol-editor-container .symbol-btn-clan:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

#cool-symbol-editor-container .spacer-15 {
    height: 15pt;
    clear: both;
}

#cool-symbol-editor-container .item-loading {
    opacity: 0.4 !important;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* ============================================
   SYMBOL BLOCK
   ============================================ */

#cool-symbol-editor-container .symbol-block {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f9f9f9;
}

#cool-symbol-editor-container .symbol-block h2 {
    margin: 0 0 15px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #5f6367;
    display: flex;
    align-items: center;
}