/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

html, body {
  height: 100%;
  width: 100%;

}

#app {
  height: 100vh;
}
.ultrapress-view, .ultrapress-data {
	width: 100%;
  height: 80vh;
}

.ultrapress-view {
  background: #ffffff;
}

.ultrapress-data {
  word-break: break-all;
  height: 80vh;
}

.ultrapress-container {
  height: 100vh;
}

.ultrapress-header {
	width: 100%;
}

#meedsvg {
	width: 100%; 
}

#sidebar-mp {
 background: #e6f7f7;
}

.error-input {
  border: 1px solid red !important; 
  background: #faf5f6 !important;
}

.valide-input {
  border: 1px solid black; 
  background: #eff7ed !important;
}

.svg-text {
  font-family: Arial;
  font-size: 30px;
  stroke     : #00ff00;
  fill       : #00ff00;
  text-anchor: middle;
}

.ultrapress-logo {
  font-family: Arial;
  font-size: 1.5rem;
  stroke     : #ffff0d;
  fill       : #ffff0d;
  color: #fcfc88;
  text-anchor: middle;
  font-weight: bold; 
  -ms-user-select: none;
   user-select: none
}

.vl {
  border-left: 1px solid white;
}

/* Tips Carousel Styles */
.tips-carousel-container {
    position: fixed !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    border-radius: 12px !important;
    padding: 20px 60px !important;
    z-index: 999999 !important;
    width: 600px !important;
    min-width: 600px !important;
    max-width: 90% !important;
    border: 1px solid #e5e5e5 !important;
}

.tips-carousel {
    position: relative !important;
    overflow: hidden !important;
    height: 100px !important;
    width: 100% !important;
}

.tip-slide {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
    pointer-events: none !important;
    padding: 10px !important;
}

.tip-slide.active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.tip-icon {
    font-size: 28px !important;
    min-width: 40px !important;
    text-align: center !important;
}

.tip-text {
    font-size: 15px !important;
    color: #1d2327 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    flex: 1 !important;
}

.tip-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #f0f0f1 !important;
    border: none !important;
    font-size: 24px !important;
    color: #2271b1 !important;
    cursor: pointer !important;
    padding: 10px !important;
    z-index: 2 !important;
    outline: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.tip-nav:hover {
    color: #135e96 !important;
    background: #e5e5e5 !important;
}

.tip-nav.prev {
    left: 10px !important;
}

.tip-nav.next {
    right: 10px !important;
}