.timer-box {
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.timer-display {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin:  0;
}
.btn-timer {
    width: 120px;
    height: 50px;
    font-size: 20px;
}


/* Header box */
.header-timer-box {
    padding: 10px;
    background:#fafbf4;
}

.time-box{
    gap: 5px;
}

/* Time text */
.timer-text {
    font-size: 20px;
    font-weight: bold;
}

/* Stop button */
.timer-stop {
    border: none;
    background: #ef4444;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

/* Hover */
.timer-stop:hover {
    background: #dc2626;
    transform: scale(1.1);
}
.img-height{
    height: 50px;
}


/* ===============================
   SUMMERNOTE CONTENT FIX
================================ */

/* Editor content */
.note-editor .note-editable {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

/* Paragraph spacing */
.note-editor .note-editable p {
    margin-bottom: 10px;
}

/* ===============================
   LIST FIX (VERY IMPORTANT)
================================ */

/* Unordered list (bullets) */
.note-editor .note-editable ul {
    list-style-type: disc !important;
    padding-left: 25px !important;
    margin-bottom: 10px;
}

/* Ordered list (numbers) */
.note-editor .note-editable ol {
    list-style-type: decimal !important;
    padding-left: 25px !important;
    margin-bottom: 10px;
}

/* List items */
.note-editor .note-editable li {
    margin-bottom: 5px;
}

/* ===============================
   DISPLAY SAVED CONTENT FIX
================================ */

/* When showing saved HTML (outside editor) */
.description-content ul {
    list-style-type: disc !important;
    padding-left: 25px;
}

.description-content ol {
    list-style-type: decimal !important;
    padding-left: 25px;
}

/*.description-content li {
    margin-bottom: 5px;
}*/

/* ===============================
   FONT CONTROLS
================================ */

.note-editor .note-editable span {
    font-family: inherit;
}



/* ===============================
   TOOLBAR FIX
================================ */

.note-toolbar {
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

/* Buttons spacing */
.note-toolbar .note-btn {
    margin-right: 2px;
}

/* ===============================
   CODEVIEW FIX
================================ */

.note-editor.note-frame .note-editing-area .note-codable {
    background-color: #1e1e1e;
    color: #fff;
    font-family: monospace;
}

/* ===============================
   IMAGE & MEDIA
================================ */

.note-editor .note-editable img {
    max-width: 100%;
    height: auto;
}

/* ===============================
   REMOVE ADMIN TEMPLATE CONFLICTS
================================ */

/* Force override common template resets */
.note-editor ul,
.note-editor ol {
    list-style: initial !important;
}

.note-editor ul li {
    list-style-type: disc !important;
}

.note-editor ol li {
    list-style-type: decimal !important;
}

/* Global fix if theme breaks lists */
.description ul {
    list-style-type: disc;
    padding-left: 25px;

}

.description ol {
    list-style-type: decimal;
    padding-left: 25px;

}


.avatar-edit-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    display: flex;
}
.avatar-edit-btn i{
    font-size:15px;
    color:#fff;
}

.profile_image{
    text-align: center;
}

.profile_image img{
    width: 300px;
    height: 300px;
    border-radius: 8px;
    margin-bottom:15px;
}