
#wp-hmac-generator *{  
    box-sizing:border-box;  
}  
  
#wp-hmac-generator{  
    background:#f8fafc;  
    color:#111;  
    font-family:Arial,sans-serif;  
    padding:0;  
    border-radius:12px;  
}  
  
#wp-hmac-generator .header{  
    background:#fff;  
    padding:20px 20px 10px;  
    border-radius:10px;  
    margin-bottom:15px;  
    border:1px solid #e2e8f0;  
}  
  
#wp-hmac-generator h2{  
    margin:0 0 10px;  
    font-size:22px;  
}  
  
#wp-hmac-generator .layout{  
    display:grid;  
    grid-template-columns:1fr;  
    gap:15px;  
}  
  
#wp-hmac-generator .panel{  
    background:#fff;  
    border:1px solid #dbe3ee;  
    border-radius:10px;  
    overflow:hidden;  
}  
  
#wp-hmac-generator .panel-header{  
    padding:15px;  
    background:#e2e8f0;  
    color:#000;  
    font-weight:bold;  
}  
  
#wp-hmac-generator .content{  
    padding:15px;  
}  
  
#wp-hmac-generator label{  
    display:block;  
    margin-bottom:8px;  
    font-size:14px;  
    font-weight:bold;  
    color:#111;  
}  
  
#wp-hmac-generator select,  
#wp-hmac-generator input[type="text"]{  
    width:100%;  
    border:1px solid #ddd !important;  
    border-radius:8px;  
    padding:12px;  
    background:#fff;  
    font-size:14px;  
    color:#111 !important;  
}  
  
#wp-hmac-generator .grid{  
    display:grid;  
    grid-template-columns:1fr;  
    gap:15px;  
}  
  
#wp-hmac-generator .controls{  
    display:flex;  
    flex-wrap:wrap;  
    gap:10px;  
    margin-top:15px;  
}  
  
#wp-hmac-generator button{  
    border:none;
    border-radius:5px;
    padding:10px 20px;
    background:#1b6997;
    color:#fff;
    cursor:pointer;
    font-weight:bold;
  font-size: 14px !important;
    font-weight: 500;
}  
  
#wp-hmac-generator button:hover{  
    opacity:.9;  
    background:#d95a00 !important;  
}  
  
#wp-hmac-generator .results{  
    padding:15px;  
}  
  
#wp-hmac-generator .result{  
    padding:12px;  
    border-radius:8px;  
    margin-bottom:10px;  
    font-size:14px;  
    line-height:1.5;  
}  
  
#wp-hmac-generator .error{  
    background:#fee2e2;  
    border-left:5px solid #ef4444;  
    color:#7f1d1d;  
}  
  
#wp-hmac-generator .success{  
    background:#dcfce7;  
    border-left:5px solid #22c55e;  
    color:#14532d;  
}  
  
#wp-hmac-generator .CodeMirror{  
    height:320px;
    font-size:14px;
    background:#fff;
    color:#111;
	padding: 5px;
    border:1px solid #ddd;
    margin-top:10px;
    margin-bottom:10px;
}

#wp-hmac-generator .editor {
	height: 320px;
	font-size: 14px;
	font-family: monospace;
	background: #fff;
	color: #111;
	border: 1px solid #ddd;
	border-radius: 0;
	outline: none;
	padding: 10px;
	margin-top: 0;
	margin-bottom: 0;
	width: 100%;
}


#wp-hmac-generator .editor:focus {
	outline: none;
}
  
#wp-hmac-generator .CodeMirror-gutters{  
    background:#fff;  
    border-right:1px solid #e2e8f0;  
}  
  
#wp-hmac-generator .CodeMirror-placeholder{  
    color:#777 !important;  
    opacity:1 !important;  
}  
  
#output-box{  
 display:none;
    margin-top:25px;  
    background:#fff;  
    border:1px solid #dbe3ee;  
    border-radius:10px;  
    overflow:hidden;  
}  
  
#output-box .CodeMirror{
    height:350px !important;
    margin:10px;
    font-size:12px;
}
  
#output-box .CodeMirror-line{  
    padding-left:20px !important;  
}  
  
#output-box .CodeMirror-scroll{  
    overflow-x:hidden !important;  
    overflow-y:auto !important;  
}  
	
	#output-box .controls{
    padding:0 15px 15px;
}