/*
Plugin Name: Resume Upload
Author: mbbhatti
*/

/* Table */
#customers {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#customers td, #customers th {
    border: 1px solid #ddd;
    padding: 8px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
}

/* Text Fields */
.input-field-cls{
	width: 46%;
	float: left;
	margin: 2% 2%;
}

.skill-field-cls{  
  width: 75%;
  float: left;
  margin: 2% 2%;
}


.all-fields{	
	margin: 2% 2%;
	width: 96%;
	float: left;
}

.btn-style{
	padding: 30px;
	width: 100%;
	margin: 5% 0;
}

.label-style{
	font-weight: bold;
}
.mark-style{
	color:red;
	font-weight: bold;
}

.success-style{
	color:green;
	margin: 2% 2%;
}
.error-style{
	color:red;
	margin: 2% 2%;
}

@media only screen and (max-width: 767px) {
  .input-field-cls{
		width: 100%;
		float: none;
	}
  .all-fields{      
    width: 100%;
    float: none;
  }
}

/* File Field */
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn {
  border: 2px solid #000;
  color: #000;
  background-color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin: 5% 0 0 0;
}

.upload-btn-wrapper input[type=file] {
  font-size: 27px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  margin: 12px 0;
  width: 100%;
}

/* Skill Tags Field */
#tags{
  float:left;
  border:1px solid #ccc;
  padding:4px;
  font-family:Arial;
}
#tags span.tag{
  cursor:pointer;
  display:block;
  float:left;
  color:#000000;
  background:#4CAF50;
  padding:5px 10px;
  padding-right:30px;
  margin:4px;
}
#tags span.tag:hover{
  opacity:0.7;
}
#tags span.tag:after{
 position:absolute;
 content:"×";
 border:1px solid;
 border-radius:10px;
 padding:0 4px;
 margin:3px 0 10px 7px;
 font-size:10px;
}
#tags input{
  background:#eee;
  border:0;
  padding:7px;
}

.error {
  color: red;
  font-style: italic;
  margin-bottom: 0 !important;
}
#refreshimg{
  cursor: pointer;
  color: #4CAF50;
}