.shake {
    animation: shake 0.5s;
    animation-iteration-count: 1;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.entegre-div {
    position: fixed;
    width: 400px;
    height: 450px;
    background-color: lightblue;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    resize:both;
    box-shadow: 0px 2px 5px grey;
    z-index:200;
    border-radius:5px;
   
}

.entegre-header {
    background-color: lightblue;
    color: white;
    padding: 5px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-radius:5px;
}

.entegre-content {
    flex-grow: 1;
    padding: 10px;
    background-color: white;
    color: black;
    overflow:auto;
      
}

.minimized {
    height: 30px;
    background-color: lightblue;
    border: 1px solid gray;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 5px;
    flex-direction: row;
    width: auto;
    box-sizing: border-box;

}

.minimized .entegre-header {
    cursor: default;
    background-color: transparent;
    color: white;
    flex-grow: 1;
}

.minimized button {
    color: white;
    font-size: 12px;
}

.minimized button:hover {
    color: gray;
}
.hedearbutton {
   
	background-color:transparent;
	border:0;
	color:white;
	cursor:pointer;
    font-size:0.9rem;
    z-index:1002;
    
}


.cariAcKapa{
    font-size:0.9rem;
}
