@media (max-width: 1024px) {
  .glass-card {
/*    margin-left: auto !important;
    margin-right: auto !important;*/
    width: 100% !important;
    max-width: 100% !important;
  }

  .card.glass-card {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  #roleList {
    text-align: center !important;
  }

  #roleList .role-item {
    display: inline-block !important;
    max-width: 100% !important;
  }

  .role-item .remove-role-btn {
    right: 5px !important;
  }
}

.text-success {
  background: rgba(129, 199, 132, 0.2) !important;
  color: #4caf50 !important;
  padding: 4px 10px !important;
  border-radius: 33px !important;
  box-shadow: 0 2px 6px rgba(76, 175, 80, 0.2) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-align: center !important;
  max-width: 400px !important;
  margin: 10px auto !important;
  transition: background-color 0.3s ease !important;
}

.upload-overlay {
  transition: opacity 0.3s ease;
  color: #f0fff0;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

#uploadMessage {
  transition: opacity 0.5s ease;
}

.profile-picture-wrapper {
  position: relative;
  width: 255px;
  height: 255px;
  flex-shrink: 0;
  margin: 15px;
}

.profile-picture-wrapper img {
  width: 255px;
  height: 255px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.glass-card {
  border-radius: 33px;
  background: rgba(255, 255, 255, 0.33);
  color: #eee;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px;
}

.btn-glass {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 24px;
  border-radius: 15px;
  font-size: 14px;
  letter-spacing: 1.5px;
  cursor: pointer;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-transform: uppercase;
}

.btn-glass:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #000;
  border-color: rgba(255, 255, 255, 0.5);
}

#editableBio {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 33px;
  border-radius: 33px;
  background: rgba(255, 255, 255, 0.05);
  color: #555;
  backdrop-filter: blur(8px);
  min-height: 100px;
  outline: none;
  transition: border-color 0.3s ease;
}

#editableBio:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255, 255, 255, 0.12);
}

.btn-grey {
  display: none;
}

body {
  background: rgba(128, 255, 212, 0.44);
  background-size: cover;
  font-family: 'Open Sans', sans-serif;
  color: #eee;
  text-align: center;
}

#bioMessage {
  color: #7cff7c;
  margin-top: 10px;
  font-weight: bold;
  transition: opacity 0.5s ease;
}

h3 {
  color: black;
  margin-bottom: 1rem;
}

h6 {
  color:rgba(0, 0, 0, 0.49) !important;
}

.h-title {
    font-size: 33px;
}

.glass-panel {
  color: #fff;
  margin: 40px auto;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  border-radius: 15px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.glass-button {
  display: inline-block;
  padding: 15px 15px;
  border: 0;
  text-decoration: none;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(30px);
  color: rgba(0, 0, 0, 0.8);
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
}

.glass-button:hover {
  background-color: rgba(255,255,255,0.2);
}

.glass-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
  color: #222;
  font-weight: 600;
}

.glass-table thead tr {
  background: rgba(255, 255, 255, 0.25);
  color: #111;
  font-size: 1.1rem;
}

.glass-table tbody tr {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s ease;
  border-radius: 15px;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.1);
}

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

.glass-table td {
  padding: 15px 20px;
  vertical-align: middle;
  border: none;
}

.glass-table th {
  text-align:center;
}

.glass-table tbody tr td:first-child:hover {
  color: #4CAF50;
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.glass-table tbody tr td:nth-child(2):hover {
  color: #E53935;
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.glass-input {
  background-color: transparent !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 12px 20px !important;
  font-size: 11px !important;
  color: black;
  outline: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.glass-input::placeholder {
  color: black !important;
}

.glass-input:focus {
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
}


body {
  background-color: rgba(128, 255, 212, 0.44);
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.glass-button {
  margin: 15px;
  margin-top: 40px;
}

h1, h1 a {
  min-height: 120px;
  width: 90%;
  max-width: 700px;
  vertical-align: middle;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  color: #fff;
  padding-top: 60px;
  color: rgba(255,255,255,0.8);
}

p {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 32px;
  color: black;
}

.profile-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.profile-icon:hover {
  transform: scale(1.2);
  filter: brightness(1.1);
}

scrollbar-width: thin; /* Firefox */
::-webkit-scrollbar { width: 6px; } /* Chrome */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.scrollable-glass {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) rgba(255,255,255,0.05);
}

.blue-button {
  background: linear-gradient(145deg, #1e90ff, #1c7ed6);
  border: none;
  color: #fff;
  padding: 10px 22px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.blue-button:hover {
  background: linear-gradient(145deg, #1c7ed6, #1e90ff);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(30, 144, 255, 0.4);
}

.blue-button:active {
  transform: scale(0.97);
}

.profile-picture-wrapper {
  position: relative;
  width: 255px;
  height: 255px;
  flex-shrink: 0;
  margin: 15px;
}

.profile-picture-wrapper img {
  width: 255px;
  height: 255px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}


.profile-picture-wrapper .upload-overlay {
  border-radius: 50% !important;
  font-size: 12px !important;
  text-align: center !important;
  transition: opacity 0.3s ease !important;
}

.profile-picture-wrapper:hover .upload-overlay {
  opacity: 1 !important;
}

.qol-7xk92-flex-1 {
    flex: 1;
}

.qol-7xk92-font-family {
    font-family: 'Sinhala Sangam MN';
}

.qol-7xk92-img-size {
    width: 30px;
    height: 30px;
}

    .profile-restricted-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  /*background: #f8f9fa;*/
}

.profile-restricted-card {
  max-width: 500px;
  /*background: rgba(255, 255, 255, 0.85);*/
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.profile-restricted-card h2 {
  /*color: #222;*/
  margin-bottom: 15px;
  font-size: 1.8em;
}

.profile-restricted-card p {
  /*color: #555;*/
  font-size: 1em;
  line-height: 1.5;
}

.tooltip-bubble {
    display: none;
    position: absolute;
    top: 100%;
    left: 10px;
    z-index: 100;
    background-color: #f0f0f0;
    color: black;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
    max-width: 300px;
    white-space: normal;
    font-size: 0.9em;
    transition: opacity 0.3s ease;
}

.message-preview.expanded {
    background-color: #f7f7f7;
    transform: scale(1.02);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.message-preview .full-text {
    display: none;
}

.message-preview.expanded .short-text {
    display: none;
}

.message-preview.expanded .full-text {
    display: inline;
}

/* Fond flouté */
.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(8px) !important;
  background: rgba(17, 7, 7, 0.3);
  z-index: 1000;
}

/* Bulle de message zoomée */
.message-zoom {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(255, 255, 255, 0.49);
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  width: 80%;
  max-width: 500px;
  color: black;
  font-size: 16px;
  /*animation: zoomIn 0.2s ease-out;*/
  animation: zoomInZigzag 0.5s ease-out;

}

@keyframes zoomInZigzag {
  0% {
    transform: translate(-50%, -50%) scale(0.7) rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: translate(-50%, -50%) scale(1.05) rotate(1deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.95) rotate(-1deg);
  }
  75% {
    transform: translate(-50%, -50%) scale(1.02) rotate(0.5deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes zigzag-press {
  0%   { transform: scale(1) rotate(0deg); }
  20%  { transform: scale(1.05) rotate(1deg); }
  40%  { transform: scale(0.97) rotate(-1deg); }
  60%  { transform: scale(1.03) rotate(0.5deg); }
  80%  { transform: scale(0.99) rotate(-0.5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.zigzag-active {
  animation: zigzag-press 0.5s ease-in-out;
}

.qol-p2m99-padding {
  padding: 20px;
}

.qol-maxw-100 {
  max-width: 100%;
}

.qol-m7-margin-left {
  margin: 7px 7px 7px 11px;
}

.qol-color-black {
  color: black;
}

.qol-table-style {
  width: 100%;
  border-radius: 11px;
}

.qol-p2m99-padding {
  padding: 20px !important;
}

.qol-maxw-550 {
  max-width: 550px !important;
}

.qol-m7-margin-left {
  margin: 7px 7px 7px 11px !important;
}

.qol-color-black {
  color: black !important;
}

.qol-mb10-posrel {
  margin-bottom: 10px !important;
  position: relative !important;
}

.qol-radius-bg-margin {
  border-radius: 33px !important;
  background-color: rgb(30, 3, 50) !important;
  margin: 3px !important;
}

.qol-p3k78-mb11 {
  margin-bottom: 11px !important;
}

.ml-11 {
  margin-left: 11px !important;
}

.qol-v9x24-mb7-black {
  margin-bottom: 7px !important;
  color: black !important;
}

.qol-g6w44-role-item {
  border-radius: 33px !important;
  background-color: rgb(30, 3, 50) !important;
  margin: 3px !important;
  display: inline-block !important;
  position: relative !important;
}

.qol-no-role {
  /* Si tu veux un style spécial pour le message "No job roles available" */
}

.qol-n7x84-mb11-padding {
  margin-bottom: 11px;
  padding: 20px;
}

.qol-x2v99-mb7-black {
  margin-bottom: 7px;
  color: black;
}

.qol-h9m62-white-important {
  color: white !important;
}

.qol-b4f13-radius {
  border-radius: 33px;
}

.qol-s5h33-font {
  font-size: 14px !important;
}

.qol-c7k21-white-text {
  color: white;
}

.qol-m4j08-hidden {
  display: none;
}

.qol-d2p94-padding-margins {
  padding: 20px !important;
  margin: 7px 11px !important;
}

.qol-f1r08-black {
  color: black !important;
}

.qol-k5v87-form {
  display: flex ;
  flex-direction: column ;
  gap: 12px ;
}

.qol-c3w41-label {
  color: black ;
  font-weight: 600;
}

.qol-h6a22-input {
  padding: 10px !important;
  border-radius: 12px !important;
  border: none !important;
  color: black !important;
}

.qol-textarea {
  padding: 10px !important;
  border-radius: 12px !important;
  border: none;
  color: black !important;
  resize: vertical !important;
  height: 50px;
}

.qol-btn-submit {
  margin-top: 10px;
  padding: 12px !important;
  border-radius: 25px !important;
  font-weight: 700;
}

.qol-response-msg {
  margin-top: 10px !important;
  font-weight: bold !important;
}

  .background-holographic {
  background: linear-gradient(45deg, 
    #ff3c78, #ffda76, #33d9b2, #3a4dff, #ff3c78, #ffda76, #33d9b2);
  background-size: 600% 600%;
  animation: holographicShine 20s ease infinite;
  filter: brightness(1.1) saturate(1.3);
}

@keyframes holographicShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.qol-p6v12-black {
  color: black;
}

.qol-z3t77-no-cv {
  color: black !important;
}

  .skill-badge {
    font-size: 14px !important;
    /*padding: 10px 10px !important;*/
    border-radius: 22px;
    font-weight: normal !important;
    color: white;
    background: radial-gradient(rgba(0, 0, 0, 0), rgba(3, 24, 25, 0) 13.45%, rgba(21, 75, 88, 0.04) 50%, #0ed116 99.58%);
    background-size: 600% 600%;
    animation: gradientMove 8s ease infinite;
    display: inline-block;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold !important;
}

/* Hover effect (optional) */
.skill-badge:hover {
    transform: scale(1.19);
}

/* Gradient animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.qol-m4r88-mb11 {
    margin-bottom: 11px !important;
}

.qol-j9v31-mb7-black {
    margin-bottom: 7px !important;
    color: black;
}

.qol-v2d50-skill-style {
    font-size: 14px !important;
    padding: 11px !important;
    border-radius: 22px !important;
    background-color: rgb(30, 3, 50) !important;
    font-weight: bold !important;
}

.qol-x1c66-no-skill {
    color: black !important;
}

.qol-b1y27-mb11 {
    margin-bottom: 11px;
}

.qol-r5k03-mb7-black {
    margin-bottom: 7px ;
    color: black ;
}

.qol-u7q92-scrollbox {
    max-height: 280px ;
    overflow-y: auto ;
}

.qol-k3m64-icon {
    width: 40px ;
    height: 40px;
    object-fit: contain;
}

.qol-f8z81-no-links {
    color: black !important;
}

.qol-n8e71-mb11 {
    margin-bottom: 11px;
}

.qol-x4k39-mb7-black {
    margin-bottom: 7px;
    color: black;
}

.qol-a2c93-certificate-style {
    border-radius: 33px !important;
    background-color: rgb(30, 3, 50);
    margin: 3px !important;
}

.qol-d4r61-no-cert {
    font-size: 90% !important;
}

.qol-j2k59-mb11 {
    margin-bottom: 11px !important;
}

.qol-x7d14-mr11 {
    margin-right: 11px !important;
}

.qol-f3n82-mb7-black {
    margin-bottom: 7px !important;
    color: black;
}

.qol-r9a33-overflow {
    overflow-y: auto !important;
}

  .custom-video-wrapper {
  position: relative;
  padding-bottom: 400px;
  margin-bottom: 66px;
  height: 0;
  overflow: hidden;
}

.custom-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rounded-video {
  border-radius: 15px;
  overflow: hidden;
}

.qualify-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qualify-btn:hover {
  background-color: #0056b3;
}

.qualify-btn.qualified {
  background-color: #28a745;
}

.qualify-btn:active {
  animation: wiggle 0.3s ease;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

.qol-a3n57-height55 {
    height: 55px;
}

.qol-l9v42-qualifier-text {
    margin-top: 10px;
    color: black;
    font-weight: bold;
}

.qol-card-public-height {
height: 35%;
}

.qol-card-public-margin {
margin: 7px 11px 7px 11px;
}

.contribution-dashboard-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.contribution-heatmap-container {
    min-width: 520px;
    width: max-content;
    margin: auto;
}

@media (max-width: 576px) {
    .contribution-heatmap-container {
        transform: scale(.85);
        transform-origin: top left;
        margin-left: 10px;
    }

    .month-label {
        font-size: 10px !important;
    }

    .day-label {
        font-size: 9px !important;
    }
}

@media (max-width: 768px) {
    .contribution-heatmap-container {
        transform: scale(.90);
        transform-origin: top left;
    }

    .month-label {
        font-size: 12px !important;
    }

    .day-label {
        font-size: 10px !important;
    }

}

@media (min-width: 1000px) {
    .contribution-heatmap-container {
        transform: scale(1);
    }
}

@media (min-width: 1200px) {
    .contribution-dashboard-wrapper {
        overflow-x: hidden !important;
    }
}

.contribution-dashboard-wrapper::-webkit-scrollbar {
    height: 6px;
}

.contribution-dashboard-wrapper::-webkit-scrollbar-track {
    background: #e0f2e9;
    border-radius: 4px;
}

.contribution-dashboard-wrapper::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 4px;
}

.contribution-dashboard-wrapper::-webkit-scrollbar-thumb:hover {
    background: #1e7e34;
}

#heatmap {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, 17px);
    grid-auto-columns: 17px;
    grid-gap: 2px;
    padding-top: 20px; 
    position: relative;
}

.month-label {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: span 4;
    font-weight: bold;
    text-transform: uppercase;
    color: #8db510;
    font-size: 12px;
    margin-bottom: 5px;
    align-self: end;
}

.day-label {
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: horizontal-tb;
    font-weight: bold;
    text-transform: uppercase;
    color: #8db510;
    font-size: 12px;
    margin-right: 30px;
}

.contribution-heatmap-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: max-content;
}

.calendar-cell {
    width: 16px; 
    height: 17.61px;
    background-color: rgba(15, 103, 72, 0.29);
    clip-path: polygon(
        50% 0%, 100% 25%, 100% 75%, 
        50% 100%, 0% 75%, 0% 25%
    );
    display: block;
    margin: 0;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: 0.6180px solid greenyellow;
}

body.dark-mode .calendar-cell {
    border: 0.6180px solid black;
}

body.dark-mode .calendar-cell:hover {
        opacity: 0.9;
        background-color: #ffe082;
}

.Y.W {
    margin-left: 10px !important;
}

.Y.Z {
    margin-left: 10px !important;
}

.contribution-heatmap-wrapper .calendar-row:nth-child(even) .calendar-cell {
    margin-top: 9.82px;
}


.calendar-cell:hover {
    transform: scale(1.1);
    background-color: #ffca28;
    box-shadow: 0 0 4px #ffb300;
    opacity: 0.5;
}


/* [] Begin */

/*.calendar-cell {
    width: 17px;
    height: 17px;
    border-radius: 3px;
    background-color: rgba(235, 237, 240, 0.23);
    cursor: pointer;
    border: 1px solid #ccc;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}*/

/*.calendar-cell:hover {
    opacity: 0.7;
}
*/

/*.calendar-cell.empty {
    background-color: rgba(235, 237, 240, 0.1);
    border: 1px solid rgba(235, 237, 240, 0.5);
}
*/

/* [] End */

.calendar-cell.empty {
    background-color: rgba(255, 255, 255, 0);
    border: 0px solid rgba(235, 237, 240, 0.5);
}


.high-contribution {
    background-color: #4aff00;
}

.medium-contribution {
    background-color: #90EE90;
}

.low-contribution {
    background-color: color(display-p3 0.455 1 0.67 / 0.48);
}

.container {
    margin: 0 auto;
    padding: 20px;
    max-width: 100%;
}

.calendar-cell[title] {
    position: relative;
    cursor: pointer;
}

.calendar-cell:hover::after {
    content: attr(title);
    position: absolute;
    top: -30px;
    left: 0;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 9999;
}