/*
Theme Name: Totally Bare
Author: David Dekel
Description: bare bones.
Requires at least: 6.1
Tested up to: 6.2
Requires PHP: 7.3
Version: 1.00
*/


*,
*:before,
*:after{

    margin      :   none ;
    padding     :   none ;
    box-sizing  :   border-box;

}

body{

    font-family :   'PT Sans Narrow' ;

}

/***************/
/* Data Table */

table{

	width:98%;

}
	
.center{

	text-align:center;

}

td a{

    text-decoration:none;
	outline: none;

}

td a:focus{

	outline: none;

}

#actions{

    width: 100px;

}


/***************/
/* success msg */
/***************/


div.success_msg{

	background: #fff;
	box-shadow: 0 1px 1px rgba(0,0,0,.04);
	margin: 16px 15px 25px 15px;
	padding: 1px 12px;
	outline: 0;
	display: block;
	border: 1px solid #c3c4c7;
	border-left-color: #00a32a;
	border-left-width: 4px;

}

div.success_msg p{

	margin: 0.5em 0;
	padding: 2px;
	font-size: 13px;
	line-height: 1.5;
	font-family: 'PT Sans Narrow';

}